aboutsummaryrefslogtreecommitdiff
path: root/website/usageExamples/experimental/FieldDefaultsExample_post.jpage
blob: 95c17a4b3dbb17b52bd8258a113b29a6eb4a6a9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
public class FieldDefaultsExample {
	public final int a;
	private final int b;
	private int c;
	final int d;
	
	FieldDefaultsExample() {
		a = 0;
		b = 0;
		d = 0;
	}
}