Files
kotlin/jps-plugin/testData/incremental/multiModule/transitiveDependency/module2_b.kt
Evgeny Gerashchenko 967f470b16 Added multi-module tests on incremental compilation.
Changing code wasn't required, Java's incremental caches were enough.
2015-01-19 15:36:55 +03:00

10 lines
58 B
Kotlin
Vendored

package b
fun b(param: a.A) {
a.a()
}
fun bb() {
}