xref: /aosp_15_r20/external/stg/test_cases/info_tests/function/static_method.cc (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
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