Added multi-module tests on incremental compilation.

Changing code wasn't required, Java's incremental caches were enough.

Original commit: 967f470b16
This commit is contained in:
Evgeny Gerashchenko
2014-11-12 20:19:02 +03:00
parent c5bc52a1b0
commit 2f3028e45e
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() {
}
}