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

9 lines
343 B
Plaintext
Raw Normal View History

2015-06-15 19:44:21 +02:00
tests/cases/compiler/undeclaredBase.ts(1,37): error TS2339: Property 'I' does not exist on type 'typeof M'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/undeclaredBase.ts (1 errors) ====
module M { export class C extends M.I { } }
2015-03-02 21:21:53 +01:00
~
2015-06-15 19:44:21 +02:00
!!! error TS2339: Property 'I' does not exist on type 'typeof M'.
2014-07-13 01:04:16 +02:00