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

10 lines
334 B
Plaintext
Raw Normal View History

tests/cases/compiler/errorLocationForInterfaceExtension.ts(3,21): error TS2304: Cannot find name 'string'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/errorLocationForInterfaceExtension.ts (1 errors) ====
var n = '';
interface x extends string { }
~~~~~~
!!! error TS2304: Cannot find name 'string'.
2014-07-13 01:04:16 +02:00