Moved current incremental compiler test data into subdirectory.

Tweaked test generator to avoid creating test methods for parent directory of tests.

Original commit: 479711e812
This commit is contained in:
Evgeny Gerashchenko
2014-07-08 18:22:50 +04:00
parent 4ec7f13421
commit 48c9728e70
164 changed files with 199 additions and 178 deletions
@@ -0,0 +1,7 @@
Cleaning output files:
out/production/module/test/TestPackage-usage-*.class
out/production/module/test/TestPackage.class
End of files
Compiling files:
src/usage.kt
End of files
@@ -0,0 +1,6 @@
package test
inline fun f(body: () -> Unit) {
println("i'm inline function")
body()
}
@@ -0,0 +1,5 @@
package test
fun main(args: Array<String>) {
f { println("to be inlined") }
}
@@ -0,0 +1,5 @@
package test
fun main(args: Array<String>) {
f { println("to be inlined") }
}