981d471ebe
and KT-8434 Removing parameter with default value from function in different module breaks incremental compilation #KT-9843 Fixed #KT-8434 Fixed
7 lines
55 B
Kotlin
Vendored
7 lines
55 B
Kotlin
Vendored
package a
|
|
|
|
class A {
|
|
fun foo(x:Int = 10) {
|
|
}
|
|
}
|