Update testData

This commit is contained in:
Simon Ogorodnik
2021-01-22 19:18:34 +03:00
parent 9548caf6ea
commit f2c1608c2b
6 changed files with 6 additions and 17 deletions
@@ -1,7 +0,0 @@
interface G<T> {
fun foo()
val bar: Int
}
fun <!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>G<!>.foo() {}
val <!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>G<!>.bar: Int get() = 42
@@ -1,3 +1,5 @@
// FIR_IDENTICAL
interface G<T> {
fun foo()
val bar: Int
@@ -1,3 +0,0 @@
class Class1<T : Class2<Class1<<!UNRESOLVED_REFERENCE!>X<!>>>>
class Class2<T : Class1<Class2<<!UNRESOLVED_REFERENCE!>X<!>>>>
@@ -1,3 +1,5 @@
// FIR_IDENTICAL
class Class1<T : Class2<Class1<<!UNRESOLVED_REFERENCE!>X<!>>>>
class Class2<T : Class1<Class2<<!UNRESOLVED_REFERENCE!>X<!>>>>
@@ -1,7 +0,0 @@
//KT-304: Resolve supertype reference to class anyway
open class Foo() : <!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>Bar<!>() {
}
open class Bar<T>() {
}
@@ -1,3 +1,5 @@
// FIR_IDENTICAL
//KT-304: Resolve supertype reference to class anyway
open class Foo() : <!WRONG_NUMBER_OF_TYPE_ARGUMENTS!>Bar<!>() {