TypeScript/tests/cases/compiler/accessorsNotAllowedInES3.ts

7 lines
106 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
// @target: ES3
class C {
get x(): number { return 1; }
}
var y = { get foo() { return 3; } };