2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.pt / ptrmem7.C
blob2e6b2db098daf31126319ebf51945297e9f8d737
1 // { dg-do assemble  }
2 // Origin: Jason Merrill <jason@cygnus.com>
4 struct A {
5   int i;
6 };
8 template<const int A::* P>
9 struct B { };
11 int main()
13   B<&A::i> b;