aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/cplusplus/cxx11/data/braceInitializers.3.cpp
blob: 5105b4690c5b3c844708b0c82dd72a5715578d86 (plain)
1
2
3
4
5
6
auto x = int{};
auto y = Foo{};
auto z = typename Foo<T>{};

auto d = new C(1, abc...);
auto e = new C{1, 2, 3};