aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/before/Switch11.java
blob: 556631f0ebc9fca67c3dcdb7ef257f667a3e5996 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// version :11
public class Switch11 {
	public void basic() {
		switch (5) {
		case 1:
		case 2:
			System.out.println("OK");
			break;
		default:
		}
	}
}