TypeScript/tests/baselines/reference/objectLitStructuralTypeMismatch.js

8 lines
185 B
JavaScript

//// [objectLitStructuralTypeMismatch.ts]
// Shouldn't compile
var x: { a: number; } = { b: 5 };
//// [objectLitStructuralTypeMismatch.js]
// Shouldn't compile
var x = { b: 5 };