クラスまたはトレイトフィールドが別の要素によってシャドーされている場合に報告します。

例:


  class Foo(foo: String) {
    def bar(): Unit = {
      val foo: String = ""
    }
  }