Fixed test data

This commit is contained in:
Valentin Kipyatkov
2015-01-27 22:49:11 +03:00
parent 78be48ace8
commit 033b626a08
11 changed files with 26 additions and 12 deletions
@@ -1,7 +1,9 @@
// "Change function signature to 'fun f(a: A)'" "true"
// ERROR: 'f' overrides nothing
import a.B
import a.A
class A {}
class BB : B() {
<caret>override fun f(a: a.A) {}
override fun f(a: A) {}
}