tests/cases/compiler/contextualTypingOfAccessors.ts(8,8): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
tests/cases/compiler/contextualTypingOfAccessors.ts(11,8): error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.


==== tests/cases/compiler/contextualTypingOfAccessors.ts (2 errors) ====
    // not contextually typing accessors
    
    var x: {
       foo: (x: number) => number;
    }
     
    x = {
       get foo() {
           ~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
          return (n)=>n
       },
       set foo(x) {}
           ~~~
!!! error TS1056: Accessors are only available when targeting ECMAScript 5 and higher.
    }
    