[KLIB IC] Add test about incremental kotlin-js-stdlib-klib recompliation

Original commit: cc818025df
This commit is contained in:
Roman Artemev
2020-06-19 14:47:21 +03:00
committed by romanart
parent 62a9ad7218
commit b11a0d3fc6
7 changed files with 39 additions and 0 deletions
@@ -0,0 +1,4 @@
class D : B {
override fun toString(): String = "D"
}
@@ -0,0 +1,13 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/B.class
out/production/module/test/UseKt.class
End of files
Compiling files:
src/B.kt
src/use.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,2 @@
fun use(): String = D().toString()