xref: /aosp_15_r20/external/stg/test_cases/info_tests/static/simple.cc (revision 9e3b08ae94a55201065475453d799e8b1378bea6)
1 struct Foo {
2   int bar;
3   static int st;
4   static Foo Default();
5 };
Default()6 Foo Foo::Default() { return {.bar = st}; }
7 
8 int Foo::st;
9