aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/initlist43.C
blob: 1cae23a432dbacf575821500aac401596b36513a (plain)
1
2
3
4
5
6
7
// Test that using T{} at file scope doesn't create a static temporary.
// { dg-do compile { target c++11 } }
// { dg-final { scan-assembler-not "local" } }

struct A { };

A a = A{};