kotlinp: use JVM_IR backend for compiling tests

Also, test optimized delegated properties.
This commit is contained in:
pyos
2021-07-02 11:09:42 +02:00
committed by Alexander Udalov
parent 791fa411d8
commit 2fe7cf27ad
4 changed files with 9 additions and 7 deletions
+2
View File
@@ -8,5 +8,7 @@ class C(val constructorParam: String = "") {
val <T : Number> T.delegated: List<Nothing> by null
val withOptimizedDelegate by C::getterOnlyVal
operator fun Nothing?.getValue(x: Any?, y: Any?) = emptyList<Nothing>()
}