TypeScript/tests/cases/compiler/unknownPropertiesAreAssignableToObjectUnion.ts
Nathan Shively-Sanders 8ab22217c1 Test:Unknown properties are assignable to Object in union
Add test and accept baselines
2017-04-18 14:58:27 -07:00

4 lines
104 B
TypeScript

// @strictNullChecks: true
const x: Object | string = { x: 0 };
const y: Object | undefined = { x: 0 };