mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 08:31:26 +00:00
7 lines
146 B
Kotlin
Vendored
7 lines
146 B
Kotlin
Vendored
abstract class A1 : CharSequence {}
|
|
|
|
abstract class A2 : CharSequence {
|
|
override fun get(index: Int) = 'z';
|
|
}
|
|
|
|
// 2 public final bridge charAt |