Skip to content

Latest commit

 

History

History
27 lines (21 loc) · 369 Bytes

File metadata and controls

27 lines (21 loc) · 369 Bytes

GA0019

Title

Invalid type parameter name

Category

Validity

Severity

Error

Group

DG03

Details

This error is emitted when the referred type parameter name does not exist in the declaring member's type parameter list.

Example

class C
<
    // GA0019 will appear here
    [InheritTypeConstraints("T1")]
    T
>
{ }