Reports type parameters that shadow other type parameters defined in the enclosing scope.

Example:


  class Test[T] {
    def inner[T]: Int = ???
  }