[IR][tests] Add tests for IR linkage issues related to properties

This commit is contained in:
Dmitriy Dolovov
2022-04-27 11:23:19 +03:00
parent 8e8ecc48ad
commit deb9039b0f
26 changed files with 163 additions and 51 deletions
+12
View File
@@ -0,0 +1,12 @@
val foo: String get() = "FAIL1"
val exp_foo: String get() = "FAIL2"
class A {
val foo: String get() = "FAIL3"
val exp_foo: String get() = "FAIL4"
}
class B {
val foo: String = "FAIL5"
val exp_foo: String = "FAIL6"
}
+9
View File
@@ -0,0 +1,9 @@
val foo: String get() = "OK"
class A {
val foo: String get() = "OK"
}
class B {
val foo: String = "OK"
}
@@ -0,0 +1,6 @@
STEP 0:
dependencies: stdlib
STEP 1:
dependencies: stdlib
modifications:
U : l1.kt.1 -> l1.kt