forked from JavaTX/JavaCompilerCore
7 lines
80 B
Plaintext
7 lines
80 B
Plaintext
|
|
||
|
class Generics<B> {
|
||
|
<A> A mt1(A a, B b){
|
||
|
return mt1(a, a);
|
||
|
}
|
||
|
}
|