d0f0b9e355
For internal members new names are generated, So, references to them from Java will be broken
8 lines
139 B
Kotlin
Vendored
8 lines
139 B
Kotlin
Vendored
import java.util.ArrayList
|
|
|
|
class Test {
|
|
var list: List<MutableList<Int>> = ArrayList()
|
|
fun test() {
|
|
list[0].add(1)
|
|
}
|
|
} |