* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-empty12.C
blob74634424f44bcb3e2eaf1fe7bdba309704d9c88a
1 // { dg-do compile { target c++11 } }
3 struct A { } a;
4 constexpr int f (A a) { return 42; }
5 constexpr int i = f(a);