TypeScript/tests/cases/compiler/es6MemberScoping.ts
2014-07-12 17:30:19 -07:00

17 lines
262 B
TypeScript

class Foo {
constructor(store: string) { }
public foo() {
return this._store.length;
}
public _store = store; // should be an error.
}
class Foo2 {
static Foo2():number { return 0; } // should not be an error
}