5d92453532
#KT-1174 In Progress
9 lines
138 B
Kotlin
9 lines
138 B
Kotlin
open class Outer {
|
|
class Nested : Outer() {
|
|
fun bar() = foo()
|
|
fun baz() = super.foo()
|
|
}
|
|
|
|
fun foo() = 42
|
|
}
|