JavaPatternMatching/test/javFiles/Generics.jav

7 lines
80 B
Plaintext
Raw Normal View History

2017-03-22 15:05:59 +00:00
class Generics<B> {
<A> A mt1(A a, B b){
return mt1(a, a);
}
}