summaryrefslogtreecommitdiff
path: root/libbindgen/tests/headers/struct_with_anon_struct.h
blob: 1617d7a8dc4e8746d3c8e07b44a2a83a4d7f225b (plain)
1
2
3
4
5
6
struct foo {
    struct {
        int a;
        int b;
    } bar;
};