aboutsummaryrefslogtreecommitdiffstats
path: root/cmake/cmake-cxx11/Modules/CheckCXX11Features/cxx11-test-auto_fail_compile.cpp
blob: 3c0e3f2e015a7784af546a6fa4ea98313958017d (plain)
1
2
3
4
5
6
7
int main(void)
{
	// must fail because there is no initializer
	auto i;

	return 0;
}