mirror of
https://github.com/tiennm99/lombok.git
synced 2026-05-26 00:01:06 +00:00
13 lines
169 B
Plaintext
13 lines
169 B
Plaintext
public class FieldDefaultsExample {
|
|
public final int a;
|
|
private final int b;
|
|
private int c;
|
|
final int d;
|
|
|
|
FieldDefaultsExample() {
|
|
a = 0;
|
|
b = 0;
|
|
d = 0;
|
|
}
|
|
}
|