1 struct S 2 { 3 int int_member; 4 }; 5 6 class C 7 { 8 int int_member; 9 }; 10 11 void foo(S &,C &)12 foo(S&, C&) 13 {} 14