summaryrefslogtreecommitdiff
path: root/tests/auto/cplusplus/cxx11/data/braceInitializers.2.cpp
blob: 4dc183d8f5021182f7be1090542efbfcc6f854a1 (plain)
1
2
3
4
5
6
7
class C {
    C() : _x{12}, _y({12}) {}
    C(int i) : _x{{{12, 2}, {"foo"}}, {bar}}... {}
    C(int i) : _x({{12, 2}, {"foo"}}, {bar})... {}
};

void foo(int i = {1, 2, 3});