10 lines
155 B
Kotlin
Vendored
10 lines
155 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
open class Outer {
|
|
class Nested : Outer() {
|
|
fun bar() = foo()
|
|
fun baz() = super.foo()
|
|
}
|
|
|
|
fun foo() = 42
|
|
}
|