1 struct S 2 { 3 int i; 4 SS5 S() 6 : i(0) 7 {} 8 9 int 10 foo() const; 11 }; 12 13 int foo() const14 S::foo() const 15 {return i;} 16