9bb7a29baa
Warnings are not implemented yet, so don't produce errors either.
13 lines
303 B
Kotlin
Vendored
13 lines
303 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
// MUTE_FOR_PSI_CLASS_FILES_READING
|
|
|
|
// FILE: J1.java
|
|
import io.reactivex.rxjava3.annotations.*;
|
|
|
|
public class J1<@NonNull T> {}
|
|
|
|
// FILE: main.kt
|
|
fun main() {
|
|
J1<Any?>() // violated nullability, no warnings; but there is an error with -Xtype-enhancement-improvements-strict-mode
|
|
}
|