[FIR TEST] Replace OTHER_ERROR with UNRESOLVED_REFERENCE in test data

This commit is contained in:
Mikhail Glukhikh
2020-07-31 20:07:11 +03:00
parent c55cdf1935
commit 6eab6f2f87
7 changed files with 9 additions and 9 deletions
@@ -1,5 +1,5 @@
data class A(val x: <!OTHER_ERROR, OTHER_ERROR, OTHER_ERROR!>Set<CLassNotFound><!> = setOf()) {
fun with(x: <!OTHER_ERROR, OTHER_ERROR!>Set<CLassNotFound>?<!> = null) {
data class A(val x: <!UNRESOLVED_REFERENCE, UNRESOLVED_REFERENCE!>Set<CLassNotFound><!> = setOf()) {
fun with(x: <!UNRESOLVED_REFERENCE, UNRESOLVED_REFERENCE!>Set<CLassNotFound>?<!> = null) {
A(x ?: this.x)
}
}