6 lines
84 B
Java

class Generics2<B extends String>{
<B extends Integer> B m1(B b){
return b;
}
}