blob: 355147f6ab4fe491c853c2b72d8de73c3ebc33bb [file] [log] [blame]
package signature;
public class TestTypeVariables<T, E extends String, R extends Object & Comparable<? super R>> {
void signature() {
T t= null;
E e= null;
R r= null;
}
}