JavaCompilerCore/resources/bytecode/javFiles/Generics2.jav
Daniel Holle ebd6a00a39
All checks were successful
Build and Test with Maven / Build-and-test-with-Maven (push) Successful in 2m50s
Fix the rest of the test cases
2024-03-14 14:38:02 +01:00

9 lines
150 B
Java

import java.lang.String;
import java.lang.Integer;
public class Generics2<B extends String>{
public <X extends Integer> X m1(X b){
return b;
}
}