blob: d94405d852401d12bd4d21173eb4484dc886592e (
plain)
1
2
3
4
5
6
7
8
9
|
class WithWithGenerics<T, J extends T, L extends java.lang.Number> {
@lombok.With J test;
@lombok.With java.util.List<L> test2;
@lombok.With java.util.List<? extends L> test3;
int $i;
public WithWithGenerics(J test, java.util.List<L> test2, java.util.List<? extends L> test3) {
}
}
|