* decl.c (make_typename_type): s/parameters/arguments/.
[official-gcc.git] / gcc / testsuite / g++.dg / cpp0x / initlist43.C
blob1cae23a432dbacf575821500aac401596b36513a
1 // Test that using T{} at file scope doesn't create a static temporary.
2 // { dg-do compile { target c++11 } }
3 // { dg-final { scan-assembler-not "local" } }
5 struct A { };
7 A a = A{};