1// RUN: not %clang_cc1 -emit-llvm-only -std=c++1y -g %s 2>&1 | FileCheck %s
2
3struct foo {
4  auto func(); // CHECK: error: debug information for auto is not yet supported
5};
6
7foo f;
8