mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-02 14:20:55 +07:00
15 lines
234 B
Java
15 lines
234 B
Java
// "Create local variable 'v'" "true"
|
|
public class A {
|
|
void foo() {
|
|
L l = () -> {
|
|
MyException v;
|
|
throw v
|
|
}
|
|
}
|
|
|
|
interface L {
|
|
void g() throws MyException;
|
|
}
|
|
class MyException extends Exception {}
|
|
}
|