7 lines
165 B
Kotlin
7 lines
165 B
Kotlin
package test
|
|
|
|
public open class DifferentGetterAndSetter() {
|
|
public open fun setSomething(p0: String?): Unit { }
|
|
public open fun getSomething() : Int = 17
|
|
}
|