mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
13 lines
139 B
Kotlin
Vendored
13 lines
139 B
Kotlin
Vendored
// FILE: Foo.java
|
|
|
|
public class Foo {
|
|
public class Inner { }
|
|
}
|
|
|
|
// FILE: 1.kt
|
|
|
|
fun box(): String {
|
|
Foo().Inner()
|
|
return "OK"
|
|
}
|