aboutsummaryrefslogtreecommitdiffstats
path: root/cxx11/demo.cpp
blob: f647d15b41241f2f260538f30fb52753a629fd65 (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;
}