* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / defaulted27.C
blobd26e744da734ca239508f921f38f9dafc96c7423
1 // PR c++/47544
2 // { dg-do compile { target c++11 } }
3 // { dg-final { scan-assembler "_ZN1sIiEC2Ev" } }
4 // { dg-final { scan-assembler-not "_ZN1sIiED2Ev" } }
6 template <typename T>
7 struct s {
8   s();
9   ~s() = default;
12 extern template struct s<int>;
14 template <typename T>
15 s<T>::s() = default;
17 template struct s<int>;
19 s<int> a;