* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-60199.C
blob20dd946c4c7739d14d219698e93267166dc980b2
1 // PR c++/60199
2 // { dg-do compile { target c++11 } }
4 void f() {}
6 static constexpr void (*g1)() = &f;
7 static constexpr void (*g2)() = f;
8 struct S {
9     static constexpr void (*g3)() = &f;
10     static constexpr void (*g4)() = f;