mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
16 lines
331 B
Kotlin
Vendored
16 lines
331 B
Kotlin
Vendored
abstract class A8 : MutableCollection<Any> {
|
|
override fun contains(o: Any): Boolean {
|
|
throw UnsupportedOperationException()
|
|
}
|
|
}
|
|
|
|
// 1 bridge
|
|
// 1 public final bridge size
|
|
// 0 INSTANCEOF
|
|
|
|
/* Only 1 null check should be within the contains method */
|
|
// JVM_TEMPLATES:
|
|
// 1 IFNULL
|
|
// JVM_IR_TEMPLATES:
|
|
// 1 IFNONNULL
|