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