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