David Blaikie | 22c460a0 | 2013-05-24 21:24:35 +0000 | [diff] [blame^] | 1 | // RUN: %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; |