IDEA-119416 Smart type completion proposes nothing in String concatenation expressions

This commit is contained in:
peter
2014-01-17 19:11:11 +01:00
parent e323fe1c87
commit 032c188cd8
6 changed files with 28 additions and 1 deletions
@@ -0,0 +1,8 @@
public class Test {
{
int abcdef = 2;
System.out.println("" + abcdef<caret>);
}
}
@@ -0,0 +1,8 @@
public class Test {
{
int abcdef = 2;
System.out.println("" + abc<caret>);
}
}
@@ -0,0 +1,6 @@
class Foo {
{
System.out.println("" + <caret>);
}
}