Update testData after changes in diagnostics
This commit is contained in:
Vendored
+2
-2
@@ -26,11 +26,11 @@ package override
|
||||
}
|
||||
|
||||
<error>class MyIllegalClass4</error> : MyTrait, MyAbstractClass() {
|
||||
<error>fun foo()</error> {}
|
||||
fun <error>foo</error>() {}
|
||||
<error>override</error> fun other() {}
|
||||
}
|
||||
|
||||
class MyChildClass1 : MyClass() {
|
||||
<error>fun foo()</error> {}
|
||||
fun <error>foo</error>() {}
|
||||
override fun bar() {}
|
||||
}
|
||||
|
||||
+1
-1
@@ -14,7 +14,7 @@
|
||||
class MyChildClass : MyGenericClass<Int>() {}
|
||||
class MyChildClass1<T> : MyGenericClass<T>() {}
|
||||
class MyChildClass2<T> : MyGenericClass<T>() {
|
||||
<error>fun foo(t: T)</error> = t
|
||||
fun <error>foo</error>(t: T) = t
|
||||
override fun bar(t: T) = t
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user