mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-19 18:50:59 +07:00
15 lines
242 B
Java
15 lines
242 B
Java
// "Create local variable 'v'" "true-preview"
|
|
public class A {
|
|
void foo() {
|
|
L l = () -> {
|
|
MyException v;
|
|
throw v
|
|
}
|
|
}
|
|
|
|
interface L {
|
|
void g() throws MyException;
|
|
}
|
|
class MyException extends Exception {}
|
|
}
|