mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Currently only those that override special builtin properties (e.g. `Collection.size`) Their modality is defined by method's modality
5 lines
67 B
Kotlin
Vendored
5 lines
67 B
Kotlin
Vendored
package test
|
|
|
|
val Collection<*>.anotherSize : Int
|
|
get() = size
|