Files
2022-05-02 15:35:49 +00:00

11 lines
294 B
Java

// "Replace with old style 'switch' statement" "true"
import java.util.*;
public class GenerateThrow {
void foo(int i) {
int res = <caret>switch (i) { // convert to 'old style' switch
case 0 -> 1;
default/*1*/ ->/*2*/ throw /*3*/new IllegalArgumentException();
};
}
}