* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / constexpr-using2.C
blob59a65e50582ad8598c12fcd44e44fd30661b7171
1 // PR c++/49520
2 // { dg-do compile { target c++11 } }
4 namespace x { void foo(); }
6 template<typename T>
7 struct traits
9     static constexpr bool f() { return true; }
11     static constexpr bool g()
12     {
13         using x::foo;
14         return f() && noexcept(foo());
15     }
18 template struct traits<int>;