// !DIAGNOSTICS: -UNUSED_PARAMETER tailRecursive fun foo() { bar { foo() } } fun bar(a: Any) {} fun box(): String { foo() return "OK" }