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