summaryrefslogtreecommitdiff
path: root/tests/headers/struct_with_anon_struct_pointer.h
blob: 0c486d84f56c53d5a11844adc56834de9ffdb9a0 (plain)
1
2
3
4
5
6
struct foo {
    struct {
        int a;
        int b;
    } *bar;
};