2014-01-30 Alangi Derick <alangiderick@gmail.com>
[official-gcc.git] / gcc / testsuite / g++.dg / template / recurse.C
blob94b56f67e99376a3f14ee57ebda22b0fc03b4176
1 // Test for handling of excessive template recursion.
2 // { dg-options "-ftemplate-depth-50 -O" }
4 template <int I> struct F
6   int operator()()
7     {
8       F<I+1> f;                 // { dg-error "incomplete type" "incomplete" }
9                                 // { dg-bogus "exceeds maximum.*exceeds maximum" "exceeds" { xfail *-*-* } 8 }
10                                 // { dg-error "exceeds maximum" "exceeds" { xfail *-*-* } 8 }
11       return f()*I;             // { dg-message "recursively" "recurse" }
12     }
15 template <> struct F<52>
17   int operator()() { return 0; }
20 int main ()
22   F<1> f;
23   return f();           // { dg-message "from here" "excessive recursion" }
26 // Ignore excess messages from recursion.
27 // { dg-prune-output "from 'int" }