summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/constexpr-function1.C
blob: afe964b420f4cc4f06e5142c6ddb85d21759d941 (plain)
1
2
3
4
5
6
7
8
9
10
// { dg-do "compile" }
// { dg-options "-std=gnu++0x" }

// From N2235

constexpr int veryabs(int x) { return x < 0 ? -x : x; }

constexpr long long_max() { return 2147483647; }

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