mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Serializing information about star projections
This commit is contained in:
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
public final class UnboundWildcard {
|
||||
/*primary*/ public constructor UnboundWildcard()
|
||||
public final fun foo(): test.UnboundWildcard.MyClass<out kotlin.CharSequence?>?
|
||||
public final fun foo(): test.UnboundWildcard.MyClass<*>?
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> {
|
||||
}
|
||||
|
||||
@@ -2,7 +2,7 @@ package test
|
||||
|
||||
public final class StarProjection {
|
||||
/*primary*/ public constructor StarProjection()
|
||||
public final fun foo(): test.StarProjection.MyClass<out kotlin.CharSequence?>
|
||||
public final fun foo(): test.StarProjection.MyClass<*>
|
||||
|
||||
public trait MyClass</*0*/ T : kotlin.CharSequence?> {
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user