Move JVM specific IC test data to separate dir

This commit is contained in:
Alexey Tsvetkov
2017-07-13 07:24:56 +03:00
parent 7810da7018
commit 166883d847
89 changed files with 246 additions and 342 deletions
@@ -0,0 +1,14 @@
================ Step #1 =================
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/test/Utils.class
out/production/module/test/Utils__Pkg1Kt.class
out/production/module/test/Utils__Pkg2Kt.class
End of files
Compiling files:
src/pkg1.kt
src/pkg2.kt
End of files
Exit code: OK
------------------------------------------
@@ -0,0 +1,11 @@
@file:JvmName("Utils")
@file:JvmMultifileClass
package test
fun commonFun1() {}
private val deletedVal1: Int = 20
private fun deletedFun1(): Int = 10
private fun changedFun1(arg: Int) {}
@@ -0,0 +1,11 @@
@file:JvmName("Utils")
@file:JvmMultifileClass
package test
fun commonFun1() {}
private val addedVal1: Int = 20
private fun addedFun1(): Int = 50
private fun changedFun1(arg: String) {}
@@ -0,0 +1,13 @@
@file:JvmName("Utils")
@file:JvmMultifileClass
package test
fun commonFun2() {}
fun publicDeletedFun2() {}
private val deletedVal2: Int = 20
private fun deletedFun2(): Int = 10
private fun changedFun2(arg: Int) {}
@@ -0,0 +1,13 @@
@file:JvmName("Utils")
@file:JvmMultifileClass
package test
fun commonFun2() {}
fun publicAddedFun2() {}
private val addedVal2: Int = 20
private fun addedFun2(): Int = 50
private fun changedFun2(arg: String) {}
@@ -0,0 +1,8 @@
package test
class Usage {
fun f() {
commonFun1()
commonFun2()
}
}