11 lines
238 B
Kotlin
Vendored
11 lines
238 B
Kotlin
Vendored
internal interface I {
|
|
val something1: Int
|
|
var something2: Int
|
|
|
|
fun setSomething3(value: Int)
|
|
fun getSomething4(): Int
|
|
fun setSomething4(value: String?)
|
|
val something5: Int
|
|
|
|
fun setSomething5(value: Int): Int
|
|
} |