Files
kotlin-fork/compiler/testData/diagnostics/tests/j+k/specialBridges.kt
T
Denis Zharkov 547aa2cda6 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
2015-10-06 23:56:17 +03:00

7 lines
82 B
Kotlin
Vendored

interface I2 {
val size: Int
}
class B2 : java.util.ArrayList<String>(), I2