Update testData after changes in diagnostics

This commit is contained in:
Dmitry Petrov
2017-05-26 10:26:30 +03:00
parent 2c83718452
commit c83b764c73
89 changed files with 91 additions and 91 deletions
+2 -2
View File
@@ -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
View File
@@ -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
}