FIR: fix test data after Make 'statics visible from nested classes'

This commit is contained in:
Mikhail Glukhikh
2019-12-17 12:24:14 +03:00
parent 7b1771d432
commit 9f1f743d55
15 changed files with 60 additions and 64 deletions
@@ -3,9 +3,9 @@ enum class E {
companion object {
fun foo(): E = ENTRY
fun bar(): Array<E> = <!UNRESOLVED_REFERENCE!>values<!>()
fun baz(): E = <!UNRESOLVED_REFERENCE!>valueOf<!>("ENTRY")
val valuez = <!UNRESOLVED_REFERENCE!>values<!>()
fun bar(): Array<E> = values()
fun baz(): E = valueOf("ENTRY")
val valuez = values()
}
fun oof(): E = ENTRY