13 lines
173 B
Plaintext
Raw Permalink Normal View History

2017-03-22 16:05:59 +01:00
class Generics<B> {
<A> A mt1(A a, B b){
return mt1(a, a);
}
}
class Test {
methode(String s){
return new Generics<String>().mt1(s,s);
}
}