summaryrefslogtreecommitdiff
path: root/test/files/run/t8601e/StaticInit.java
blob: 7543ed98b80625011167359059e61b3864fcbb47 (plain) (blame)
1
2
3
4
5
6
7
8
public class StaticInit {
	static {
		if ("".isEmpty()) {
			throw new RuntimeException();
		}
	}
	public static int fld = 42;
}