mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-27 20:25:27 +00:00
9 lines
338 B
Java
9 lines
338 B
Java
class WitherWithGenerics<T, J extends T, L extends java.lang.Number> {
|
|
@lombok.experimental.Wither J test;
|
|
@lombok.experimental.Wither java.util.List<L> test2;
|
|
@lombok.experimental.Wither java.util.List<? extends L> test3;
|
|
int $i;
|
|
|
|
public WitherWithGenerics(J test, java.util.List<L> test2, java.util.List<? extends L> test3) {
|
|
}
|
|
} |