brintos

brintos / llvm-project-archived public Read only

0
0
Text · 147 B · ba34571 Raw
10 lines · cpp
1// RUN: %clang_cc1 -fsyntax-only -verify %s2// expected-no-diagnostics3 4struct S {5  static const int f0 = 0;6  static int f1;7};8 9int S::f1 = f0;10