Merge from trunk: 215733-215743
[official-gcc.git] / main / gcc / testsuite / g++.dg / template / vtable2.C
blob53b72f6f4e04f51228da14ca5fef5d79bae9e6d9
1 // Use a small template instantiation depth to speed up testing 
2 // { dg-options "-ftemplate-depth-5" }
3 // { dg-do compile }
5 // Origin: rullo.pat@tiscalinet.it
6 //         Nathanael Nerode <neroden@gcc.gnu.org>
7 //         Wolfgang Bangerth <bangerth@dealii.org>
9 // PR c++/6749: Infinite loop generating vtable.
11 template <class T> struct inner {};
13 template <class T> struct parent {
14   virtual void f()                      // { dg-error "depth" }
15     { parent<inner<T> > p; };
18 template struct parent<int>;
20 // { dg-prune-output "compilation terminated" }