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

11 lines
328 B
Plaintext
Raw Normal View History

tests/cases/compiler/bind1.ts(2,31): error TS2304: Cannot find name 'I'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/bind1.ts (1 errors) ====
module M {
export class C implements I {} // this should be an unresolved symbol I error
~
!!! error TS2304: Cannot find name 'I'.
2014-07-13 01:04:16 +02:00
}