mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-06 13:20:53 +07:00
lambda: nested lambda return statements exclusion
This commit is contained in:
@@ -0,0 +1,14 @@
|
||||
interface I {
|
||||
Integer _();
|
||||
}
|
||||
|
||||
interface I1 {
|
||||
String _();
|
||||
}
|
||||
|
||||
class Test {
|
||||
I i = () -> {
|
||||
I1 i1 = () -> {return "";};
|
||||
return 1;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user