* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / auto19.C
blobd27d4375d41ca3a0d7f45510687382b33978e3d3
1 // { dg-do compile { target c++11 } }
3 struct Explicit {
4   Explicit() = default;  // Line 2
5   explicit Explicit(const Explicit&){}
6 } ex;
8 auto ex2(ex); // Line 6