Supported checking for changing signature in submethods.
#KT-2776 in progress
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
package test
|
||||
|
||||
public trait ReadOnlyToMutable: Object {
|
||||
|
||||
public trait Super: Object {
|
||||
public fun foo(p0: List<String>)
|
||||
}
|
||||
|
||||
public trait Sub: Super {
|
||||
override fun foo(p0: List<String>)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user