summaryrefslogtreecommitdiffstats
path: root/debian/uncrustify-trinity/uncrustify-trinity-0.75.0/tests/input/cpp/bug_i_596.cpp
blob: 88f77e341b9ea2665157a5adfb322c92a1b8d3d3 (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;
}