unusedTypeParameters10.ts(1,12): error TS6196: 'T' is declared but never used.


==== unusedTypeParameters10.ts (1 errors) ====
    type Alias<T> = { };
               ~
!!! error TS6196: 'T' is declared but never used.
    type Alias2<T> = { x: T };
    