8 lines
106 B
Kotlin
Vendored
8 lines
106 B
Kotlin
Vendored
|
|
abstract class Ab {
|
|
abstract fun getArray() : Array<Int>
|
|
}
|
|
|
|
fun test(ab: Ab) {
|
|
ab.getArray()[1]
|
|
} |