blob: fbd7def061c447bb9fa5ff5259b027fe4b433c63 [file] [log] [blame]
// Test for handling of excessive template recursion.
// { dg-options "-ftemplate-depth-50 -O" }
template <int I> struct F
{
int operator()()
{
F<I+1> f; // { dg-error "depth" }
return f()*I;
}
};
template <> struct F<52>
{
int operator()() { return 0; }
};
int main ()
{
F<1> f;
return f(); // { dg-message "from here" }
}
// { dg-prune-output "compilation terminated" }