Added multi-module tests on incremental compilation.

Changing code wasn't required, Java's incremental caches were enough.
This commit is contained in:
Evgeny Gerashchenko
2014-11-12 20:19:02 +03:00
parent baea660a0b
commit 967f470b16
29 changed files with 231 additions and 2 deletions
@@ -0,0 +1,11 @@
package b
class B: a.A() {
fun f() {
}
}
open class BB {
fun f() {
}
}