报告未使用的声明。

该快速修复会移除未使用的声明。

示例:


  def test(): Int = {
    val unused = 3
    3
  }

在应用快速修复后:


  def test(): Int = {
    3
  }