OSDN Git Service

/cp
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-overflow2.C
1 // PR c++/47504
2 // { dg-options -std=c++0x }
3
4 char constexpr sub(char arg)
5 { return char(arg - char(1)); }
6
7 int main()
8 { static char constexpr m = sub(-1); }