blob: 23c6a7098efd551016c97cb41b05cabb08f3d600 [file] [log] [blame]
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]) {}