[IR][tests] Add tests for removal-of-overridden open callable case

This commit is contained in:
Dmitriy Dolovov
2022-06-07 00:06:03 +03:00
parent 846537b367
commit 9c1c712057
18 changed files with 94 additions and 0 deletions
@@ -0,0 +1,7 @@
class C2 : C() {
override fun foo(): String = "O" // does not call super
}
class I2 : I {
override fun foo(): String = "K" // does not call super
}
@@ -0,0 +1,2 @@
STEP 0:
dependencies: stdlib, lib1