• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct Struct {
2   int x;
3 };
4 
5 union Union {
6   int x;
7 };
8 
9 struct Struct foo;
10 union Union bar;
11