11 lines
134 B
Kotlin
Vendored
11 lines
134 B
Kotlin
Vendored
fun Outer.Inner.foo() = 42
|
|
|
|
class Outer {
|
|
|
|
fun foo() = ""
|
|
|
|
inner class Inner {
|
|
val x = foo() // Should be Int
|
|
}
|
|
}
|