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
@@ -2,7 +2,7 @@ import foo.Intf
class Impl(): Intf {
override fun fooBar(i : Int, s : Array<String?>?, foo : Any?) {
public override fun fooBar(i : Int, s : Array<String?>?, foo : Any?) {
throw UnsupportedOperationException()
}
}