xref: /aosp_15_r20/external/clang/test/CXX/class/class.mem/p5-0x.cpp (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
2 
3 int f();
4 
5 struct S
6 {
7   int a = f(); // ok
8   int b = g(); // expected-error {{use of undeclared identifier 'g'}}
9 };
10