mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 00:11:26 +07:00
IDEA-119416 Smart type completion proposes nothing in String concatenation expressions
This commit is contained in:
+8
@@ -0,0 +1,8 @@
|
||||
public class Test {
|
||||
|
||||
{
|
||||
int abcdef = 2;
|
||||
System.out.println("" + abcdef<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
public class Test {
|
||||
|
||||
{
|
||||
int abcdef = 2;
|
||||
System.out.println("" + abc<caret>);
|
||||
}
|
||||
|
||||
}
|
||||
+6
@@ -0,0 +1,6 @@
|
||||
class Foo {
|
||||
|
||||
{
|
||||
System.out.println("" + <caret>);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user