Add tests for obsolete issues

#KT-12126
 #KT-12189
 #KT-23628
 #KT-24209
 #KT-34338
 #KT-47279
 #KT-48498
This commit is contained in:
Alexander Udalov
2021-08-31 16:32:07 +02:00
committed by Space
parent 5c3ce66e99
commit d5372521f1
28 changed files with 400 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
// IGNORE_BACKEND: JVM
interface Interface
operator fun Interface.invoke(): String = "OK"
class Class : Interface
object Holder {
val value = Class()
}
fun box(): String =
Holder?.value()!!