Use FqNameUnsafe instead of FqName in JVM intrinsics
#KT-4777 Fixed
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
var result = "Fail"
|
||||
|
||||
val p = object : Runnable {
|
||||
override fun run() {
|
||||
fun <T : Any> T.id() = this
|
||||
|
||||
result = "OK".id()
|
||||
}
|
||||
}
|
||||
|
||||
fun box(): String {
|
||||
p.run()
|
||||
return result
|
||||
}
|
||||
Reference in New Issue
Block a user