Added test for loading Foo<?> type from Java.

This commit is contained in:
Evgeny Gerashchenko
2012-11-29 18:28:27 +04:00
parent 3d8b86040d
commit 91825a404c
5 changed files with 35 additions and 0 deletions
@@ -0,0 +1,8 @@
namespace test
public final class test.UnboundWildcard : java.lang.Object {
public final /*constructor*/ fun <init>(): test.UnboundWildcard
public final fun foo(): test.UnboundWildcard.MyClass<out jet.CharSequence?>?
public abstract trait test.UnboundWildcard.MyClass</*0*/ T : jet.CharSequence?> : java.lang.Object {
}
}