Files
kotlin-fork/jps-plugin/testData/incremental/custom/cacheVersionChangedModule2/module2_b.kt.new
T
Alexey Tsvetkov c7f66a1585 Fix recompilation of dependent modules on cache/abi version change
New cache version was written to dependent targets,
when they have not been compiled yet

 #KT-9190 Fixed
2015-09-25 20:11:57 +03:00

8 lines
63 B
Plaintext
Vendored

package module2
import module1.*
fun b(param: A) {
a()
}