Open panagosg7 opened 8 years ago
This should flag a malformed-type error:
enum SyntaxKind { ClassDeclaration } export interface Node<M extends ReadOnly> { /*@ (Immutable) kind: SyntaxKind<Immutable> */ // FLAG ERROR HERE kind: SyntaxKind; }
This should flag a malformed-type error: