blob: fcc4895a2e954876ef3f5f194bafa961d04d6fc8 [file] [log] [blame]
struct Foo {
int bar;
static int st;
static Foo Default();
};
Foo Foo::Default() { return {.bar = st}; }
int Foo::st;