1 // { dg-do compile { target c++11 } }
2 
3 // From N2235
4 
veryabs(int x)5 constexpr int veryabs(int x) { return x < 0 ? -x : x; }
6 
long_max()7 constexpr long long_max() { return 2147483647; }
8 
verysquare(int x)9 constexpr int verysquare(int x) { return x * x; }
10