summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/cpp0x/udlit-constexpr.C
blob: 4c2f7eda371926bdedf890fbc10438227034292e (plain)
1
2
3
4
5
6
7
// { dg-do compile { target c++11 } }

constexpr unsigned long long
operator"" _grow(unsigned long long n)
{ return 2 * n; }

double buffer[25_grow];