p5-0x.cpp 173 B

123456789
  1. // RUN: %clang_cc1 -fsyntax-only -verify -std=c++11 %s
  2. int f();
  3. struct S
  4. {
  5. int a = f(); // ok
  6. int b = g(); // expected-error {{use of undeclared identifier 'g'}}
  7. };