Do not recompile files compiled in current round

Original commit: 4800cff87f
This commit is contained in:
Alexey Tsvetkov
2015-12-01 22:06:00 +03:00
parent e8ced612d1
commit be7a061a70
14 changed files with 99 additions and 18 deletions
@@ -0,0 +1,9 @@
Cleaning output files:
out/production/module/META-INF/module.kotlin_module
out/production/module/foo/InlineKt.class
out/production/module/foo/UsageKt.class
End of files
Compiling files:
src/inline.kt
src/usage.kt
End of files
@@ -0,0 +1,3 @@
package foo
inline fun f(): Int = 0
@@ -0,0 +1,3 @@
package foo
inline fun f(): Int = 1
@@ -0,0 +1,5 @@
package foo
fun useF() {
println(f())
}
@@ -0,0 +1,6 @@
package foo
fun useF() {
println(f())
println(f())
}