Fix tests: wrong test data (internal visibility shouldn't be displayed after overriding a function)

This commit is contained in:
Natalia.Ukhorskaya
2013-02-07 13:33:06 +04:00
parent 1749e3298c
commit b55b3f95f4

View File

@@ -4,7 +4,7 @@ import foo.Intf
class Impl(): Intf() {
internal override fun getFooBar(): String? {
override fun getFooBar(): String? {
return super<Intf>.getFooBar()
}
}