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
@@ -5,10 +5,10 @@ trait Test {
class SomeTest : Test {
val hello = 12
override fun test() {
public override fun test() {
throw UnsupportedOperationException()
}
override val testProp : Int = 0
protected override val testProp : Int = 0
/**
* test
@@ -16,4 +16,4 @@ class SomeTest : Test {
fun some() {
}
}
}