9ec0210c04
When a type annotated with @PurelyImplements (explicitly or implicitly) inherited some methods from a java supertype and the purely implemented Kotlin supertype, it was inconsistent which of the signatures the intersection override would have (with or without flexible types). This commit adds support for the enhancement of intersection overrides. If one of the overridden methods has non-flexible types, the enhanced method will have non-flexible types. This fixes some false negative nullability type mismatches. #KT-59921 Fixed
41 lines
869 B
Kotlin
Vendored
41 lines
869 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_VARIABLE
|
|
// JAVAC_EXPECTED_FILE
|
|
|
|
import java.util.*;
|
|
|
|
// FILE: A.java
|
|
@kotlin.jvm.PurelyImplements("kotlin.collections.MutableList")
|
|
class A<T> extends AbstractList<T> {
|
|
@Override
|
|
public T get(int index) {
|
|
return null;
|
|
}
|
|
|
|
@Override
|
|
public int size() {
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
// FILE: b.kt
|
|
|
|
fun bar(): String? = null
|
|
|
|
fun foo() {
|
|
var x = A<String>()
|
|
x.add(<!NULL_FOR_NONNULL_TYPE!>null<!>)
|
|
x.add(<!ARGUMENT_TYPE_MISMATCH!>bar()<!>)
|
|
x.add("")
|
|
|
|
x[0] = <!NULL_FOR_NONNULL_TYPE!>null<!>
|
|
x[0] = <!ARGUMENT_TYPE_MISMATCH!>bar()<!>
|
|
x[0] = ""
|
|
|
|
val b1: MutableList<String?> = <!INITIALIZER_TYPE_MISMATCH!>x<!>
|
|
val b2: MutableList<String> = x
|
|
val b3: List<String?> = x
|
|
|
|
val b4: Collection<String?> = x
|
|
val b6: MutableCollection<String?> = <!INITIALIZER_TYPE_MISMATCH!>x<!>
|
|
}
|