summaryrefslogtreecommitdiff
path: root/tests/headers/anon_struct_in_union.h
blob: 880a8b545373463c6822b5d0d3c6adf5aac46462 (plain)
1
2
3
4
5
6
7
struct s {
  union {
    struct inner {
      int b;
    } field;
  } u;
};