Skip to content

Latest commit

 

History

History
29 lines (23 loc) · 567 Bytes

File metadata and controls

29 lines (23 loc) · 567 Bytes

GA0052

Title

Invalid type group specialization

Category

Validity

Severity

Error

Details

The specialization value is not valid for this type group.

See how the type group filtering system works at the docs.

Example

class GenericType
<
    // GA0052 will appear here
    [FilterGenericTypes(FilterType.Prohibited, 0)]
    // GA0052 will appear here
    [FilterArrayTypes(FilterType.Prohibited, 0)]
    [FilterGenericTypes(FilterType.Permitted)]
    [FilterArrayTypes(FilterType.Permitted)]
    T
>;