Files
2022-07-27 10:00:37 +00:00

14 lines
224 B
Java

// "Create local variable 'v'" "true-preview"
public class A {
void foo() {
L l = () -> {
throw v<caret>
}
}
interface L {
void g() throws MyException;
}
class MyException extends Exception {}
}