Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.old-deja / g++.pt / t34.C
blobdb591ea7d0e83ef5d8239543d761957a08dd5567
1 // { dg-do assemble  }
3 template <class X> struct A { int operator [] (int); };
4 template <class Y> int A<Y>::operator[] (int j) { return j * j; }
6 extern A<void **> avpp;
8 int q () { return avpp[99]; }