blob: 19fb9d39c913458a5fce523a9ba4990feedb9a7b (
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;
}
|