2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / init1.C
blob113f12c66ececd14266294595cf0c525a1593e67
1 // { dg-do assemble  }
2 // GROUPS passed initialization
3   class Thing{
4   private:
5           int x,y;
6   public:
7           Thing (int v, int q) { x = v; q = y; }
8           void doit(int);
9   };
11   Thing t(18,19);