aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/demo.cpp
blob: 782681b91ca0b8769d9351a916a0925dcf335f2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23

#include <iostream>

int main()
{
	std::cout << "Testing\n";
	std::cout << "Has static_assert: " <<
#ifdef HAS_CXX11_STATIC_ASSERT
		"yes :)"
#else
		"no"
#endif
		<< "\n";
	std::cout << "Has variadic templates: " <<
#ifdef HAS_CXX11_VARIADIC_TEMPLATES
		"yes :)"
#else
		"no"
#endif
		<< "\n";
	return 0;
}