From `master` as of right now (`7b34b612beda66b0812462a3feeabc63852cd842`) ```ts var x; var y = 100 + x; ``` Compile with `strictNullChecks` and `noImplicitAny` Expected: ***Some*** sort of error for using `x`. Actual: No error at all?