Minor. Swapped test data. "other" and "same" packages were confused.
This commit is contained in:
+2
-6
@@ -1,6 +1,6 @@
|
|||||||
Cleaning output files:
|
Cleaning output files:
|
||||||
out/production/module/_DefaultPackage$usage$*.class
|
out/production/module/usage/UsagePackage$usage$*.class
|
||||||
out/production/module/_DefaultPackage.class
|
out/production/module/usage/UsagePackage.class
|
||||||
End of files
|
End of files
|
||||||
Compiling files:
|
Compiling files:
|
||||||
src/usage.kt
|
src/usage.kt
|
||||||
@@ -9,10 +9,6 @@ COMPILATION FAILED
|
|||||||
Expecting an expression
|
Expecting an expression
|
||||||
|
|
||||||
|
|
||||||
Cleaning output files:
|
|
||||||
out/production/module/_DefaultPackage$fun$*.class
|
|
||||||
End of files
|
|
||||||
Compiling files:
|
Compiling files:
|
||||||
src/fun.kt
|
|
||||||
src/usage.kt
|
src/usage.kt
|
||||||
End of files
|
End of files
|
||||||
+2
@@ -1,2 +1,4 @@
|
|||||||
|
package f
|
||||||
|
|
||||||
fun f() {
|
fun f() {
|
||||||
}
|
}
|
||||||
+3
-1
@@ -1,3 +1,5 @@
|
|||||||
|
package usage
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f()
|
f.f()
|
||||||
}
|
}
|
||||||
+3
-1
@@ -1,3 +1,5 @@
|
|||||||
|
package usage
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f(
|
f.f(
|
||||||
}
|
}
|
||||||
+3
-1
@@ -1,3 +1,5 @@
|
|||||||
|
package usage
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f()
|
f.f()
|
||||||
}
|
}
|
||||||
+6
-2
@@ -1,6 +1,6 @@
|
|||||||
Cleaning output files:
|
Cleaning output files:
|
||||||
out/production/module/usage/UsagePackage$usage$*.class
|
out/production/module/_DefaultPackage$usage$*.class
|
||||||
out/production/module/usage/UsagePackage.class
|
out/production/module/_DefaultPackage.class
|
||||||
End of files
|
End of files
|
||||||
Compiling files:
|
Compiling files:
|
||||||
src/usage.kt
|
src/usage.kt
|
||||||
@@ -9,6 +9,10 @@ COMPILATION FAILED
|
|||||||
Expecting an expression
|
Expecting an expression
|
||||||
|
|
||||||
|
|
||||||
|
Cleaning output files:
|
||||||
|
out/production/module/_DefaultPackage$fun$*.class
|
||||||
|
End of files
|
||||||
Compiling files:
|
Compiling files:
|
||||||
|
src/fun.kt
|
||||||
src/usage.kt
|
src/usage.kt
|
||||||
End of files
|
End of files
|
||||||
@@ -1,4 +1,2 @@
|
|||||||
package f
|
|
||||||
|
|
||||||
fun f() {
|
fun f() {
|
||||||
}
|
}
|
||||||
+1
-3
@@ -1,5 +1,3 @@
|
|||||||
package usage
|
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f.f()
|
f()
|
||||||
}
|
}
|
||||||
+1
-3
@@ -1,5 +1,3 @@
|
|||||||
package usage
|
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f.f(
|
f(
|
||||||
}
|
}
|
||||||
+1
-3
@@ -1,5 +1,3 @@
|
|||||||
package usage
|
|
||||||
|
|
||||||
fun main(args: Array<String>) {
|
fun main(args: Array<String>) {
|
||||||
f.f()
|
f()
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user