Files
kotlin-fork/compiler/testData/diagnostics/tests/inner/nestedClassExtendsOuter.kt
T

10 lines
155 B
Kotlin
Vendored

// FIR_IDENTICAL
open class Outer {
class Nested : Outer() {
fun bar() = foo()
fun baz() = super.foo()
}
fun foo() = 42
}