Reports property declarations that can be joined with the following assignment.

Example:


  val x: String
  x = System.getProperty("")

The quick fix joins the declaration with the assignment:


  val x = System.getProperty("")