报告可以与以下赋值联接的属性声明。

示例:


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

该快速修复会将声明与赋值联接:


  val x = System.getProperty("")