* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr67625.C
blobbcff5af58317634920401652cfc398cf98384e5c
1 // PR c++/67625
2 // { dg-do compile { target c++11 } }
4 constexpr unsigned short
5 bswap16 (unsigned short x)
7   return __builtin_bswap16 (x);
9 constexpr int a = bswap16 (1);
10 enum { b = a };
11 enum { c = __builtin_bswap16 (1) };
12 enum { d = bswap16 (1) };