90ce15d96f
NOTE: not 100% that this test actually covers the corresponding fix by Alex Tkachman.
6 lines
142 B
Kotlin
6 lines
142 B
Kotlin
package otherpackage
|
|
|
|
fun fromOtherPackage(): Boolean {
|
|
val c = javaClass<Runnable>()
|
|
return (c.getName()!! == "java.lang.Runnable")
|
|
} |