blob: 66dd78c379a5f67f68bf3c4d165b63cfd04986f6 [file] [log] [blame]
class MyExample {
public <T extends Bar & Foo<T>, R> Map<T, R[]> foo(String[] RIGHT) {
someMethodCall();
someOtherMethod()
.doThat();
// Whatever...
return (List<T>) Arrays.asList("ChangeMe");
}
}