Back to Intellij Community

GrAnnotationReferencingUnknownIdentifiers

plugins/groovy/groovy-psi/resources/inspectionDescriptions/GrAnnotationReferencingUnknownIdentifiers.html

2025.3-rc-2258 B
Original Source

Reports unresolved identifiers in @TupleConstructor and @MapConstructor``includes and excludes annotation attribute values.

Example:

// unresolved 'c'
  @TupleConstructor(includes = ['a', 'b', 'c'])
  class X {
      def a
      def b
  }