* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-56302.C
blob945bf020f0ebb139adfe86fa34529d2292b18763
1 // PR c++/56302
2 // { dg-do compile { target c++11 } }
3 // { dg-options "-O0" }
5 constexpr int foo () { return 42; }
6 constexpr int x = foo () + 2;
8 void
9 bar ()
11   __asm ("" : : "n" (x), "n" (foo () * 7 + x));