Supported propagation of mutability in parameter position.

#KT-2776 in progress
This commit is contained in:
Evgeny Gerashchenko
2012-11-22 15:02:57 +04:00
parent a937d6be91
commit 795b3bfbe0
10 changed files with 152 additions and 20 deletions
@@ -0,0 +1,10 @@
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
}
}