OSDN Git Service

PR c++/51186
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / cpp0x / udlit-constexpr.C
1 // { dg-options -std=c++0x }
2
3 constexpr unsigned long long
4 operator"" _grow(unsigned long long n)
5 { return 2 * n; }
6
7 double buffer[25_grow];