1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
struct S { virtual void v () {} void f (const float g[3]); float h[3]; }; void g () { S s1, s2; s1 = s2; } void S::f (const float g[3]) {}