Incremental tests patched

This commit is contained in:
Michael Bogdanov
2015-06-26 16:33:00 +03:00
parent 905e74f870
commit 0936351983
89 changed files with 255 additions and 148 deletions
@@ -0,0 +1,29 @@
Cleaning output files:
out/production/module/B.class
out/production/module/Usage.class
out/production/module/_DefaultPackage.class
End of files
Compiling files:
src/other.kt
src/usage.kt
End of files
COMPILATION FAILED
Expecting an expression
Compiling files:
src/other.kt
src/usage.kt
End of files
Cleaning output files:
out/production/module/A.class
out/production/module/Usage.class
out/production/module/_DefaultPackage.class
out/production/module/new/LikePart.class
out/production/module/new/NewPackage.class
End of files
Compiling files:
src/fun.kt
src/likePart.kt
src/usage.kt
End of files
@@ -0,0 +1,4 @@
class A {
fun f() {
}
}
@@ -0,0 +1,5 @@
package new
fun f() {
}
@@ -0,0 +1,5 @@
class B {
fun f() {
}
}
@@ -0,0 +1,7 @@
package new
class B {
fun f() {
}
}
@@ -0,0 +1,6 @@
import new.*
fun main(args: Array<String>) {
A().f()
B().f()
}
@@ -0,0 +1,6 @@
import new.*
fun main(args: Array<String>) {
B().f(
A().f(
}
@@ -0,0 +1,5 @@
import new.*
fun main(args: Array<String>) {
A().f()
B().f()
}