summaryrefslogtreecommitdiff
path: root/test/files/neg/t4581/static_2.java
blob: 2fd5bf1d822ec767f7724e891306d02a1f72a4d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
public class static_2 {
	public static void main(String[] args) {
		Constants.Const = 17;
		Constants.FinalConst = 99;
		Constants.MutableField = 199;
	}
}