xref: /llvm-project/clang/test/CXX/basic/basic.lookup/basic.lookup.unqual/p13.cpp (revision c6e68daac0fa6e77a89f3ca72f266a528503dd1c)
1 // RUN: %clang_cc1 -fsyntax-only -verify %s
2 // expected-no-diagnostics
3 
4 struct S {
5   static const int f0 = 0;
6   static int f1;
7 };
8 
9 int S::f1 = f0;
10