2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / init / array7.C
blob23c6a7098efd551016c97cb41b05cabb08f3d600
1 struct S {
2   virtual void v () {}
3   void f (const float g[3]);
4   float h[3];
5 };
7 void g () {
8   S s1, s2;
9   s1 = s2;
12 void S::f (const float g[3]) {}