TypeScript/tests/baselines/reference/typeofInObjectLiteralType.errors.txt

7 lines
346 B
Plaintext
Raw Normal View History

tests/cases/compiler/typeofInObjectLiteralType.ts(1,31): error TS2304: Cannot find name 'b'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeofInObjectLiteralType.ts (1 errors) ====
var a: { b: number; c: typeof b }; // Should give error for attempting to use type query on b.
~
!!! error TS2304: Cannot find name 'b'.