blob: 8c4201e1ec2e3d1b16279a2fd77e1dadf6c22d19 [file] [log] [blame]
// Test that we catch excessive recursion.
// { dg-do compile { target c++11 } }
// { dg-options "-fconstexpr-depth=5" }
// { dg-prune-output "in constexpr expansion" }
constexpr int f (int i) { return f (i-1); } // { dg-message "in .constexpr. expansion of " }
constexpr int i = f(42); // { dg-error ".constexpr. evaluation depth|in .constexpr. expansion of " }