mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-21 21:50:54 +07:00
14 lines
224 B
Java
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 {}
|
|
}
|