fix KT-9843 Bug in incremental compilation: module is not recompiled when optional parameter added

and KT-8434 Removing parameter with default value from function in different module breaks incremental compilation

#KT-9843 Fixed

#KT-8434 Fixed

Original commit: 981d471ebe
This commit is contained in:
Michael Nedzelsky
2015-11-05 20:48:33 +03:00
parent 7e4395a173
commit 02543e165b
21 changed files with 145 additions and 0 deletions
@@ -0,0 +1,7 @@
package a
class A {
fun foo() {
}
}