Files
kotlin-fork/compiler/testData/diagnostics/tests/resolve/parameterAsDefaultValueInLocalFunction.fir.kt
T

6 lines
152 B
Kotlin
Vendored

// !DIAGNOSTICS: -UNUSED_PARAMETER
fun foo() {
fun bar(x: String, y: String = x) {}
fun baz(x: Int = <!UNRESOLVED_REFERENCE!>y<!>, y: Int) {}
}