Add LLVM runtime checks to build path
[clang/acc.git] / test / SemaCXX / static-initializers.cpp
blob3d92a532ae1a23c1d3ba2b4771c26997cc109246
1 // RUN: clang-cc -fsyntax-only -verify %s
2 int f()
4 return 10;
7 void g()
9 static int a = f();
12 static int b = f();