Files
kotlin-fork/compiler/testData/loadJava/kotlinSignature/propagation/parameter/InheritMutability.kt
T
Evgeny Gerashchenko 795b3bfbe0 Supported propagation of mutability in parameter position.
#KT-2776 in progress
2012-11-28 15:08:56 +04:00

13 lines
232 B
Kotlin

package test
public trait InheritMutability: Object {
public trait Super: Object {
public fun foo(p0: MutableList<String>)
}
public trait Sub: Super {
override fun foo(p0: MutableList<String>)
}
}