p13.cpp 147 B

123456789
  1. // RUN: %clang_cc1 -fsyntax-only -verify %s
  2. // expected-no-diagnostics
  3. struct S {
  4. static const int f0 = 0;
  5. static int f1;
  6. };
  7. int S::f1 = f0;