8 lines
99 B
Kotlin
Vendored
8 lines
99 B
Kotlin
Vendored
fun Any.test() {
|
|
if (this is String) {
|
|
<expr>foo()</expr>
|
|
}
|
|
}
|
|
|
|
fun String.foo() {}
|