mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-17 08:31:29 +00:00
Load special java methods as properites
Currently only those that override special builtin properties (e.g. `Collection.size`) Their modality is defined by method's modality
This commit is contained in:
@@ -8,5 +8,5 @@ public open class ModalityOfFakeOverrides : AbstractList<String>() {
|
||||
return ""
|
||||
}
|
||||
|
||||
override fun size(): Int = 0
|
||||
override val size: Int get() = 0
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user