Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / clang / test / CXX / basic / basic.lookup / basic.lookup.unqual / p13.cpp
blobba34571d7b6c99580d8b2297cb498ca1c641ebe1
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
4 struct S {
5 static const int f0 = 0;
6 static int f1;
7 };
9 int S::f1 = f0;