mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 08:31:31 +00:00
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
|
|
}
|