f097756721
Check for execution correctness inside the test Fix run_external to include compileKotlinAgainstKotlin
7 lines
141 B
Kotlin
7 lines
141 B
Kotlin
|
|
fun box(): String {
|
|
val x: CharSequence = ""
|
|
val klass = x::class
|
|
return if (klass == String::class) "OK" else "Fail: $klass"
|
|
}
|