Reports unused @DelegatesTo.Target annotations and unresolved @DelegatedTo.target annotation attribute values.

Example:


  // unused target 't1' and unresolved target 't2'
  def m(
      @DelegatesTo.Target('t1') target,
      @DelegatesTo(target = 't2') Closure c
  ) {}