Override/Implement actions are now inherits visibility.
This commit is contained in:
@@ -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() {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user