The following seems like it passes when using `tsc` or in an IDE, when it (correctly) fails running `tsd` via CLI: ```ts import { expectType } from 'tsd' expectType<number | null>(1) ``` [playground](https://www.typescriptlang.org/play?#code/JYWwDg9gTgLgBAbzgUwB5mQYxgFQJ4ZwC+cAZlBCHAOQwDOAJtQFDNobb4YA8AdgK4gARsihwAPnAEAbaQD4AFAEYAlMyA) (strict mode enabled) Given the docs say: >Asserts that the type of `expression` is identical to type `T`. for `expectType<T>(expression)`, this seems confusing. This behaves as expected in [expect-type](https://github.com/mmkal/expect-type) ([playground](https://www.typescriptlang.org/play?ssl=3&ssc=1&pln=4&pc=1#code/JYWwDg9gTgLgBAbzgUwB5mQYxgFQJ4YDyAZnAL5zFQQhwDkaG2AtDAcnQFCeNa7skAFAEYAlADoYEAKIBHAK4BDADb4ixADwA7eSABGyKHAA+cHcuUA+QaM5A))