mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 00:21:29 +00:00
13 lines
225 B
Plaintext
Vendored
13 lines
225 B
Plaintext
Vendored
// "Create header class implementation for platform JVM" "true"
|
|
|
|
header class WithNested {
|
|
fun foo(): Int
|
|
|
|
class Nested {
|
|
fun bar() = "Nested"
|
|
}
|
|
|
|
inner class Inner {
|
|
fun baz() = "Inner"
|
|
}
|
|
} |