2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.dg / conversion / ptrmem1.C
blobed00ea3f715281a069f811d3fdd0acb0b34ab723
1 struct S {};
3 void f (int S::*const*);
5 typedef int I;
7 void f (I S::*const*);
9 void g() {
10   int S::*const* p;
12   f(p);