Home | History | Annotate | Download | only in expr.prim
      1 // RUN: %clang_cc1 -fsyntax-only -verify -std=c++0x %s
      2 
      3 struct S {
      4   int *j = &nonexistent; // expected-error {{use of undeclared identifier 'nonexistent'}}
      5   int *m = &n; // ok
      6 
      7   int n = f(); // ok
      8   int f();
      9 };
     10 
     11 int i = sizeof(S::m); // ok
     12 int j = sizeof(S::m + 42); // ok
     13