summaryrefslogtreecommitdiffstats
path: root/test/SemaCXX/static-initializers.cpp
blob: 3d92a532ae1a23c1d3ba2b4771c26997cc109246 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// RUN: clang-cc -fsyntax-only -verify %s 
int f()
{
	return 10;
}

void g()
{
	static int a = f();
}

static int b = f();
OpenPOWER on IntegriCloud