mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 08:31:30 +00:00
13 lines
232 B
Kotlin
Vendored
13 lines
232 B
Kotlin
Vendored
// "Create header class implementation for platform JVM" "true"
|
|
|
|
header class <caret>WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar() = "Nested"
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz() = "Inner"
|
|
}
|
|
} |