4 lines
92 B
Kotlin
4 lines
92 B
Kotlin
// !DIAGNOSTICS: -UNUSED_PARAMETER
|
|
tailRecursive fun Int.foo(x: Int) {
|
|
return 1.foo(2)
|
|
} |