b350515237
Before post-processing was able to handle only one converting file at once So, some conversions (like (field, getter, setter) to Kotlin property) was not able to work when converting class hierarchy was split into multiple files. Also, inferring nullability for a set of files was broken #KT-19569 fixed #KT-34266 fixed #KT-32518 fixed
14 lines
263 B
Kotlin
Vendored
14 lines
263 B
Kotlin
Vendored
package test
|
|
|
|
interface I {
|
|
val something1: Int
|
|
val something2: Int
|
|
var something3: Int
|
|
|
|
fun getSomething4(): Int
|
|
fun setSomething4(value: Int)
|
|
fun getSomething5(): Int
|
|
fun setSomething5(value: Int)
|
|
fun setSomething6(value: Int)
|
|
}
|