JavaCompilerCore/resources/bytecode/javFiles/SwitchString.jav
2023-08-17 14:23:19 +02:00

14 lines
315 B
Java

import java.lang.Integer;
import java.lang.String;
import java.lang.Object;
public class SwitchString {
main(o) {
return switch (o) {
case "AaAaAa" -> 1; // These two have the same hash code!
case "AaAaBB" -> 2;
case "test", "TEST" -> 3;
default -> 4;
};
}
}