Perhaps we should just suppress this, rather than erroring, but since we have the infrastructure for it I figured I'd use it - if this is determined to be not the right thing we should probably remove that infrastructure entirely. I guess it's lying around from the early days of implementing debug info support. llvm-svn: 182673
8 lines
177 B
C++
8 lines
177 B
C++
// RUN: %clang_cc1 -emit-llvm-only -std=c++1y -g %s 2>&1 | FileCheck %s
|
|
|
|
struct foo {
|
|
auto func(); // CHECK: error: debug information for auto is not yet supported
|
|
};
|
|
|
|
foo f;
|