mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
9 lines
138 B
Kotlin
Vendored
9 lines
138 B
Kotlin
Vendored
open class Outer {
|
|
class Nested : Outer() {
|
|
fun bar() = foo()
|
|
fun baz() = super.foo()
|
|
}
|
|
|
|
fun foo() = 42
|
|
}
|