summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.78.1/tests/expected/cpp/10021-braces_align.cpp
blob: 40d966f531832746601db6022e011904012ead57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
char *array_assign[2][4] =
{
    {
        // foo
        {"foo"},
        {"foo@1"}, {"foo@2"}, {"foo@3"}
    },
    {
        // bar
        {"bar"},
        {"bar@1"}, {"bar@2"}, {"bar@3"}
    }
};