blob: bdd20ed84c10d284be8897d63213bca44c6cea29 [file] [log] [blame]
package test
public final class UnboundWildcard {
public final fun foo(): MyClass<*>? = throw UnsupportedOperationException()
public interface MyClass<T: CharSequence?>
}