2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.jason / pmf6.C
blob13c0981f95c76cbf1d44c55bcde6cd94a9192ef2
1 // { dg-do assemble  }
2 // PRMS Id: 5656
3 // Bug: g++ tries (which is a bug) and fails (which is a bug) to initialize
4 // var at runtime.
6 struct A
8     int func(int);
9     int func() const;
11 int (A::* var) () const = & A::func;