summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.76.0/tests/expected/cpp/33087-bug_i_596.cpp
blob: db3644a2acd3782f50177b86c73d679a9556cbe5 (plain)
1
2
3
4
5
6
7
8
9
10
#include "child.h"
int main(int argc, char*argv[]) {
    (void)argc;
    (void)argv;
    Child child;
    for (auto &attribute : *child.GetAttributes()) {
        std::cout << attribute << std::endl;
    }
    return 0;
}