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

17 lines
617 B
Plaintext
Raw Normal View History

tests/cases/compiler/ambientGetters.ts(3,9): error TS1086: An accessor cannot be declared in an ambient context.
tests/cases/compiler/ambientGetters.ts(7,9): error TS1086: An accessor cannot be declared in an ambient context.
==== tests/cases/compiler/ambientGetters.ts (2 errors) ====
2014-07-13 01:04:16 +02:00
declare class A {
get length() : number;
~~~~~~
!!! error TS1086: An accessor cannot be declared in an ambient context.
2014-07-13 01:04:16 +02:00
}
declare class B {
get length() { return 0; }
~~~~~~
!!! error TS1086: An accessor cannot be declared in an ambient context.
2014-07-13 01:04:16 +02:00
}