OSDN Git Service

* gcc.dg/tm/memopt-6.c: Cleanup tmedge tree dump.
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / template / vtable2.C
1 // Use a small template instantiation depth to speed up testing 
2 // { dg-options "-ftemplate-depth-5" }
3 // { dg-do compile }
4
5 // Origin: rullo.pat@tiscalinet.it
6 //         Nathanael Nerode <neroden@gcc.gnu.org>
7 //         Wolfgang Bangerth <bangerth@dealii.org>
8
9 // PR c++/6749: Infinite loop generating vtable.
10
11 template <class T> struct inner {};
12
13 template <class T> struct parent {
14   virtual void f()                      // { dg-error "instantiation depth" }
15     { parent<inner<T> > p; };
16 };
17
18 template struct parent<int>;