TypeScript/tests/baselines/reference/typeofInObjectLiteralType.js

6 lines
241 B
JavaScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
//// [typeofInObjectLiteralType.ts]
var a: { b: number; c: typeof b }; // Should give error for attempting to use type query on b.
//// [typeofInObjectLiteralType.js]
var a; // Should give error for attempting to use type query on b.