summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.73.0/tests/expected/cpp/30311-uniform_initialization.cpp
blob: 64da585dbb7d7be6398652b04582023d88eed132 (plain)
1
2
3
4
5
6
7
8
9
void whatever() {
        SomeStruct a = SomeStruct{1, 2, 3};

        someFuncCall(SomeStruct{4, 5, 6});
}

namespace foo {
int bar();
};