• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 struct Foo {
2   static int bar;
3   static int baz();
4   int m;
5 };
baz()6 int Foo::baz() { return bar; }
7 
8 Foo foo;
9 int Foo::bar;
10