Incremental tests patched
This commit is contained in:
Vendored
+29
@@ -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
|
||||
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
class A {
|
||||
fun f() {
|
||||
}
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
package new
|
||||
|
||||
fun f() {
|
||||
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
class B {
|
||||
fun f() {
|
||||
|
||||
}
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
package new
|
||||
|
||||
class B {
|
||||
fun f() {
|
||||
|
||||
}
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import new.*
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
A().f()
|
||||
B().f()
|
||||
}
|
||||
Vendored
+6
@@ -0,0 +1,6 @@
|
||||
import new.*
|
||||
|
||||
fun main(args: Array<String>) {
|
||||
B().f(
|
||||
A().f(
|
||||
}
|
||||
Vendored
+5
@@ -0,0 +1,5 @@
|
||||
import new.*
|
||||
fun main(args: Array<String>) {
|
||||
A().f()
|
||||
B().f()
|
||||
}
|
||||
Reference in New Issue
Block a user