• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct Foo {
2   class {
3     long x;
4   } anon_class;
5   struct {
6     long x;
7   } anon_struct;
8   union {
9     long x;
10   } anon_union;
11   enum { X = 2 } anon_enum;
12 };
13 
14 Foo var;
15