0d40022d6d
Before that, such warnings weren't reported as the corresponding errors were reported during type inference (only original types took part there)
37 lines
1005 B
Kotlin
Vendored
37 lines
1005 B
Kotlin
Vendored
// !DIAGNOSTICS: -UNUSED_PARAMETER -UNUSED_VARIABLE
|
|
// FULL_JDK
|
|
|
|
// FILE: MapLike.java
|
|
import java.util.Map;
|
|
|
|
public class MapLike<@org.jetbrains.annotations.NotNull K, V> {
|
|
void putAll(Map<K, V> map);
|
|
}
|
|
|
|
// FILE: ListLike.java
|
|
import java.util.Collection;
|
|
|
|
public class ListLike<K extends Collection<@org.jetbrains.annotations.NotNull Object>> {}
|
|
|
|
// FILE: main.kt
|
|
fun test0(map : MapLike<Int?, Int>) {}
|
|
fun <K> test11(map : MapLike<K, K>) {}
|
|
fun <K> test12(map : MapLike<K?, K>) {}
|
|
fun <K : Any> test13(map : MapLike<K, K>) {}
|
|
fun <K : Any> test14(map : MapLike<K?, K>) {}
|
|
|
|
class Foo<K>
|
|
|
|
typealias A<A> = MapLike<A, Int>
|
|
typealias A2<B> = Foo<MapLike<B, Int>>
|
|
typealias A3<C> = ListLike<List<C>>
|
|
|
|
fun main1(x: A<Int?>) {}
|
|
fun main2(x: A2<Int?>) {}
|
|
fun main3(x: A3<Int?>) {}
|
|
fun main3() {
|
|
val x = A3<Int?>() // TODO: support reporting errors on typealias constructor calls
|
|
val x2 = A<Int?>() // TODO: support reporting errors on typealias constructor calls
|
|
val y: A3<Int?> = A3<Int?>()
|
|
}
|