TypeScript/tests/baselines/reference/inferSetterParamType.errors.txt
2014-07-12 17:30:19 -07:00

29 lines
891 B
Plaintext

==== tests/cases/compiler/inferSetterParamType.ts (5 errors) ====
class Foo {
get bar() {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return 0;
}
set bar(n) { // should not be an error - infer number
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}
class Foo2 {
get bar() {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
return 0; // should be an error - can't coerce infered return type to match setter annotated type
~
!!! Type 'number' is not assignable to type 'string'.
}
set bar(n:string) {
~~~
!!! Accessors are only available when targeting ECMAScript 5 and higher.
}
}