Reports unnecessary cast expressions.

Example:


  static void foo() {
        String o = null;
        Object o2 = (Object) o;
  }