Files
kotlin-fork/compiler/testData/ir/irText/firProblems/ArrayListOverrides.kt.txt
T
2022-02-15 08:40:28 +00:00

22 lines
356 B
Kotlin
Vendored

class A1 : ArrayList<String> {
constructor() /* primary */ {
super/*ArrayList*/<@FlexibleNullability String?>()
/* <init>() */
}
}
class A2 : ArrayList<String> {
constructor() /* primary */ {
super/*ArrayList*/<@FlexibleNullability String?>()
/* <init>() */
}
override fun remove(x: String): Boolean {
return true
}
}