* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / pr65327.C
blobc6cefaba69219710124b0f81748a5595c237b3d2
1 // PR c++/65327
2 // { dg-do compile { target c++11 } }
3 // DR1688 says that constexpr can be used together with volatile.
5 constexpr volatile int i = 10;
7 void
8 foo ()
10   constexpr volatile int j = 5;
11   static constexpr volatile int k = 5;
14 constexpr volatile int
15 bar ()
17   return i;