llvm-for-llvmta/tools/clang/test/CXX/class/class.mem/p5-0x.cpp

10 lines
173 B
C++
Raw Permalink Normal View History

2022-04-25 13:02:35 +02:00
// RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
int f();
struct S
{
int a = f(); // ok
int b = g(); // expected-error {{use of undeclared identifier 'g'}}
};