OSDN Git Service

2008-03-01 Douglas Gregor <doug.gregor@gmail.com>
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / init / array7.C
1 struct S {
2   virtual void v () {}
3   void f (const float g[3]);
4   float h[3];
5 };
6
7 void g () {
8   S s1, s2;
9   s1 = s2;
10 }
11
12 void S::f (const float g[3]) {}
13
14
15