7 lines
110 B
Kotlin
7 lines
110 B
Kotlin
class C {
|
|
fun foo(o: Any) {
|
|
if (o !is String) return
|
|
System.out.println("String")
|
|
}
|
|
}
|