blob: 4da30ccaea1f9b72743f92eda7cb2616bf798ba2 [file] [log] [blame]
struct S
{
int
foo();
};
int
S::foo()
{
int i = 0;
return i;
}
int
bar()
{
S s;
return s.foo();
}