Merge from mainline (163495:164578).
[official-gcc/graphite-test-results.git] / gcc / testsuite / g++.dg / cpp0x / initlist43.C
blob72a09bdea4994df21a58f8e5ad5ab264d3696221
1 // Test that using T{} at file scope doesn't create a static temporary.
2 // { dg-options -std=c++0x }
3 // { dg-final { scan-assembler-not "local" } }
5 struct A { };
7 A a = A{};