blob: 93108b95336335228fae41b93c987c8451a27f4b [file] [log] [blame]
package test;
public final class StarProjection {
public final MyClass<?> foo() {
throw new UnsupportedOperationException();
}
public interface MyClass<T extends CharSequence> {
}
}