mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-169028 Broken auto-import completion inside lambda
This commit is contained in:
@@ -0,0 +1,6 @@
|
||||
public class SomeClass {
|
||||
private void b() {
|
||||
a(i -> PathUtil.toS<caret>s + "Hello");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,8 @@
|
||||
import pkg.PathUtil;
|
||||
|
||||
public class SomeClass {
|
||||
private void b() {
|
||||
a(i -> PathUtil.toSystemDependentName()<caret> s + "Hello");
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user