Update compiler tests after rebase

This commit is contained in:
Victor Petukhov
2021-09-30 15:12:24 +03:00
parent b5661ccabd
commit 5326c875c0
6 changed files with 62 additions and 1 deletions
@@ -0,0 +1,11 @@
// 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
}
@@ -1,4 +1,3 @@
// FIR_IDENTICAL
// MUTE_FOR_PSI_CLASS_FILES_READING
// FILE: J1.java