cmake/c++11-test-constexpr-N2235.cpp

Sat, 24 Aug 2013 15:00:46 +0300

author
Santeri Piippo <crimsondusk64@gmail.com>
date
Sat, 24 Aug 2013 15:00:46 +0300
changeset 480
ee5a4c5d4461
parent 473
2a84149fe642
permissions
-rw-r--r--

rework quick color code a tad

constexpr int square(int x)
{
	return x*x;
}

constexpr int the_answer()
{
	return 42;
}

int main()
{
	int test_arr[square(3)];
	bool ret = (
		(square(the_answer()) == 1764) &&
		(sizeof(test_arr)/sizeof(test_arr[0]) == 9)
	);
	return ret ? 0 : 1;
}

mercurial