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

10 lines
249 B
Kotlin
Vendored

interface Inter {
fun foo(x: Int = <!UNRESOLVED_REFERENCE!>y<!>, y: Int = x)
}
abstract class Abst {
abstract fun foo(x: Int = <!UNRESOLVED_REFERENCE!>y<!>, y: Int = x)
}
fun extraDiagnostics(x: Int = <!UNRESOLVED_REFERENCE!>y<!>, y: Int)