blob: 62422af6c2dea367ee126a664eafe1efee91d10b [file] [log] [blame]
struct S {
int a;
};
struct Bar {
void bar(int _a) {
S s = { _a };
};
};