mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-04 00:20:55 +07:00
inline local with rename conflicts inside lambda (IDEA-143340)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
class MyClass {
|
||||
void m() {
|
||||
Consumer c = o -> {
|
||||
System.out.println(o);
|
||||
};
|
||||
Object o = null;
|
||||
Consumer cc = <caret>c;
|
||||
}
|
||||
}
|
||||
|
||||
interface Consumer {
|
||||
void accept(Object o);
|
||||
}
|
||||
Reference in New Issue
Block a user