Minor. Added test when compilation error is introduced and fixed in other package.

This commit is contained in:
Evgeny Gerashchenko
2014-10-29 19:29:12 +03:00
parent 1e2c4659cd
commit 155775f925
11 changed files with 42 additions and 3 deletions
@@ -0,0 +1,14 @@
Cleaning output files:
out/production/module/usage/UsagePackage$usage$*.class
out/production/module/usage/UsagePackage.class
End of files
Compiling files:
src/usage.kt
End of files
COMPILATION FAILED
Kotlin:ERROR:Expecting an expression
Compiling files:
src/usage.kt
End of files
@@ -0,0 +1,4 @@
package f
fun f() {
}
@@ -0,0 +1,5 @@
package usage
fun main(args: Array<String>) {
f.f()
}
@@ -0,0 +1,5 @@
package usage
fun main(args: Array<String>) {
f.f(
}
@@ -0,0 +1,5 @@
package usage
fun main(args: Array<String>) {
f.f()
}