aboutsummaryrefslogtreecommitdiffstats
path: root/tests/features193/Switch1.java
blob: 625fe15a0be0d5c3ec7d0fd3c37f649bdc832abd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
public class Switch1 {
	public static void main(String[] argv) {
		System.out.println(one(Color.R));
		System.out.println(one(Color.G));
		System.out.println(one(Color.B));
		System.out.println(one(Color.Y));
	}

	public static int one(Color color) {
		int result = switch (color) {
			case R -> 0;
			case G -> {
				int number4 = 8 / 2;
				yield number4 /4;
			}
			case B -> 2;
			default -> 3;
		};
		return result;
	}
}

enum Color {
	R, G, B, Y;
}