3a8ad45dec
Reverts and fixes 102f0d3
8 lines
242 B
Plaintext
8 lines
242 B
Plaintext
package test
|
|
|
|
public open class DifferentGetterAndSetter {
|
|
/*primary*/ public constructor DifferentGetterAndSetter()
|
|
public open fun getSomething(): kotlin.Int
|
|
public open fun setSomething(/*0*/ p0: kotlin.String?): kotlin.Unit
|
|
}
|