blob: 6061c4c20a675526330a2dcdb2e15a9751353326 [file] [log] [blame]
Richard Smith9ca5c422011-10-13 22:29:44 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
Richard Smith938f40b2011-06-11 17:19:42 +00002
3int f();
4
5struct S
6{
7 int a = f(); // ok
8 int b = g(); // expected-error {{use of undeclared identifier 'g'}}
9};