mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 00:21:28 +00:00
9 lines
147 B
Kotlin
Vendored
9 lines
147 B
Kotlin
Vendored
fun foo(x: Any?) {
|
|
if (x is String) {
|
|
object : Base(x) {
|
|
fun bar() = x.length
|
|
}
|
|
}
|
|
}
|
|
|
|
open class Base(s: String) |