OSDN Git Service

* decl.c (compute_array_index_type): Don't try to do anything with
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.old-deja / g++.pt / virtual1.C
1   struct V { virtual ~V() {} };
2   template <class T> struct A : virtual V { };
3   template <class T> struct B {
4     virtual void f() { T foo; }
5   };
6   int main() { B< A<int> > bar; }