* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-function1.C
blobce4520d5574db3a4befc333200525fdafccceb9f
1 // { dg-do compile { target c++11 } }
3 // From N2235
5 constexpr int veryabs(int x) { return x < 0 ? -x : x; }
7 constexpr long long_max() { return 2147483647; }
9 constexpr int verysquare(int x) { return x * x; }