Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/topExtensionVsOuterMember.kt
T
2020-12-16 19:52:30 +03:00

11 lines
134 B
Kotlin
Vendored

fun Outer.Inner.foo() = 42
class Outer {
fun foo() = ""
inner class Inner {
val x = foo() // Should be Int
}
}