Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 504 Bytes

File metadata and controls

26 lines (20 loc) · 504 Bytes

GA0050

Title

Redundant unspecialized filter with exclusive specialized filter

Category

Brevity

Severity

Warning

Details

An existing specialization is marked as exclusive, which prohibits all other specializations.

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

Example

class GenericType
<
    // GA0050 will appear here
    [FilterArrayTypes(FilterType.Exclusive)]
    [FilterArrayTypes(FilterType.Exclusive, 1)]
    T
>;