mirror of
https://github.com/tiennm99/lombok.git
synced 2026-09-16 06:19:49 +00:00
13 lines
156 B
Java
13 lines
156 B
Java
// version :11
|
|
public class Switch11 {
|
|
public void basic() {
|
|
switch (5) {
|
|
case 1:
|
|
case 2:
|
|
System.out.println("OK");
|
|
break;
|
|
default:
|
|
}
|
|
}
|
|
}
|