* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-ctor10.C
blob1dbc3355e3dfd874c78608db1b5055ef57b233a3
1 // PR c++/52599
2 // { dg-do compile { target c++11 } }
4 struct foo {
5   constexpr foo() try { } catch(...) { };  // { dg-error "constexpr" }
6 };