"initialize variable" & "initialize in constructor" suggests default constructors (with inheritor's if collection) (IDEA-145431)

This commit is contained in:
Dmitry Batkovich
2015-11-06 15:56:50 +03:00
parent fb32abd2fe
commit e8805cb2cc
8 changed files with 171 additions and 77 deletions
@@ -3,7 +3,7 @@
class AClass
{
int f() {
int i = <caret><selection>0</selection>;
int i = 0<caret>;
return i;
}
}