mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
11 lines
303 B
Plaintext
Vendored
11 lines
303 B
Plaintext
Vendored
package test
|
|
|
|
public final class UnboundWildcard {
|
|
public constructor UnboundWildcard()
|
|
public final fun collection(): kotlin.collections.(Mutable)Collection<*>!
|
|
public final fun foo(): test.UnboundWildcard.MyClass<*>!
|
|
|
|
public interface MyClass</*0*/ T : kotlin.CharSequence!> {
|
|
}
|
|
}
|