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