blob: 78560e2d5daafda33efea49edbe1a5ad50de9ba2 [file] [log] [blame]
Richard Smith938f40b2011-06-11 17:19:42 +00001// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
2
3int f();
4
5struct S
6{
7 int a = f(); // ok
8 int b = g(); // expected-error {{use of undeclared identifier 'g'}}
9};