mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-04 19:24:40 +07:00
GitOrigin-RevId: 18145df666bfb6601725d6cdd13a14bb341fe32a
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 {}
|
|
}
|