mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
12 lines
233 B
Kotlin
12 lines
233 B
Kotlin
class Outer {
|
|
inner class Inner<T>(val t: T) {
|
|
fun box() = t
|
|
}
|
|
}
|
|
|
|
fun box(): String {
|
|
if (Outer().Inner("OK").box() != "OK") return "Fail"
|
|
val x: Outer.Inner<String> = Outer().Inner("OK")
|
|
return x.box()
|
|
}
|