547aa2cda6
Currently only those that override special builtin properties (e.g. `Collection.size`) Their modality is defined by method's modality
7 lines
82 B
Kotlin
Vendored
7 lines
82 B
Kotlin
Vendored
interface I2 {
|
|
val size: Int
|
|
}
|
|
|
|
class B2 : java.util.ArrayList<String>(), I2
|
|
|