0b647ac358
Split testData into 'classes' and 'expressions'.
5 lines
120 B
Kotlin
Vendored
5 lines
120 B
Kotlin
Vendored
fun testImplicitCast(a: Any) {
|
|
if (a !is String) return
|
|
|
|
val t: String = try { a } catch (e: Throwable) { "" }
|
|
} |