Supported simplest case of signatures propagation in value parameter position.

#KT-2776 in progress
This commit is contained in:
Evgeny Gerashchenko
2012-11-21 20:39:37 +04:00
parent 6530d48785
commit 4da03f75f9
15 changed files with 229 additions and 16 deletions
@@ -0,0 +1,10 @@
namespace test
public abstract trait test.NotNullToNullable : java.lang.Object {
public abstract trait test.NotNullToNullable.Sub : test.NotNullToNullable.Super {
public abstract override /*1*/ fun foo(/*0*/ p0: jet.String): jet.Tuple0
}
public abstract trait test.NotNullToNullable.Super : java.lang.Object {
public abstract fun foo(/*0*/ p0: jet.String): jet.Tuple0
}
}