package test public open class DifferentGetterAndSetter() { public open fun setSomething(p0: String?): Unit { } public open fun getSomething() : Int = 17 }