xref: /minix3/external/bsd/llvm/dist/clang/test/CodeGenCXX/debug-info-cxx1y.cpp (revision 433d6423c39e34ec4b79c950597bb2d236f886be)
1 // RUN: not %clang_cc1 -emit-llvm-only -std=c++1y -g %s 2>&1 | FileCheck %s
2 
3 struct foo {
4   auto func(); // CHECK: error: debug information for auto is not yet supported
5 };
6 
7 foo f;
8