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

11 lines
439 B
Plaintext

namespace test
public abstract trait test.InheritMutability : java.lang.Object {
public abstract trait test.InheritMutability.Sub : test.InheritMutability.Super {
public abstract override /*1*/ fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Tuple0
}
public abstract trait test.InheritMutability.Super : java.lang.Object {
public abstract fun foo(/*0*/ p0: jet.MutableList<jet.String>): jet.Tuple0
}
}