forked from OSchip/llvm-project
13 lines
120 B
C++
13 lines
120 B
C++
|
// RUN: clang -fsyntax-only -verify %s
|
||
|
int f()
|
||
|
{
|
||
|
return 10;
|
||
|
}
|
||
|
|
||
|
void g()
|
||
|
{
|
||
|
static int a = f();
|
||
|
}
|
||
|
|
||
|
static int b = f();
|