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