blob: d11d4faafa1ecc60652235459a1f18515350278d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
@lombok.AllArgsConstructor
class WithAndAllArgsConstructor<T, J extends T, L extends java.lang.Number> {
@lombok.With J test;
@lombok.With java.util.List<L> test2;
final int x = 10;
int y = 20;
final int z;
}
|