IDEA-140294 If you declare a variable and initialize it on the same line, autocomplete will suggest the new variable in that line

This commit is contained in:
peter
2015-05-15 17:04:06 +02:00
parent 84ccf388f1
commit 7ea7daa29a
4 changed files with 17 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
public class MyFirstTestClassFoo {
{
String newVar = String.valueOf(newV<caret>)
}
}