mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
155 B
Kotlin
Vendored
11 lines
155 B
Kotlin
Vendored
package Package
|
|
|
|
class Outer {
|
|
class Nested {
|
|
val O = "O"
|
|
val K = "K"
|
|
}
|
|
}
|
|
|
|
fun box() = Package.Outer.Nested().O + Outer.Nested().K
|