Reports variable assignments that can be joined with a variable declaration.

Example:


  int x;
  x = 1;

The quick-fix converts the assignment into an initializer:


  int x = 1;

New in 2018.3