allwinner_a64/android/external/clang/test/SemaCXX/static-initializers.cpp
2018-08-08 16:14:42 +08:00

11 lines
154 B
C++

// RUN: %clang_cc1 -fsyntax-only -verify %s
// expected-no-diagnostics
int f() {
return 10;
}
void g() {
static int a = f();
}
static int b = f();