Override/Implement actions are now inherits visibility.

This commit is contained in:
Sergey Lukjanov
2012-04-04 19:15:25 +04:00
parent 9b04e85282
commit d4cce32008
9 changed files with 63 additions and 11 deletions

View File

@@ -2,7 +2,7 @@ import foo.Intf
class Impl(): Intf {
override fun getFooBar() : String? {
public override fun getFooBar() : String? {
throw UnsupportedOperationException()
}
}