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