blob: 78560e2d5daafda33efea49edbe1a5ad50de9ba2 [file] [log] [blame]
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
int f();
struct S
{
int a = f(); // ok
int b = g(); // expected-error {{use of undeclared identifier 'g'}}
};