blob: 6f866a9a2f8b4a7710b80a0c8af02afc2b56c326 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
class FieldDefaults1 {
static int STATIC = 3;
final int x;
int y;
FieldDefaults1(int x) {
this.x = x;
}
}
class FieldDefaults2 {
static int STATIC = 3;
int x;
private int y;
}
|