2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.other / crash34.C
blobc320ccbd6e4c84e63346b74815d06c6b50e960f4
1 // { dg-do assemble { xfail *-*-* } }
2 // Origin: Jakub Jelinek <jakub@redhat.com>
5 class v
7     double x, y;
8 public:
9     v();
12 class w : public v {
13 public :
14     static const w X;
15     w();
18 void bar(w x);
20 void foo()
22   bar(w::X);