Files
kotlin-fork/compiler/fir/analysis-tests/testData/resolve/expresssions/topExtensionVsOuterMember.kt
T
2020-03-19 09:51:01 +03:00

10 lines
133 B
Kotlin
Vendored

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