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

7 lines
91 B
TypeScript

class foo {
static x = 3;
static bar() {
return this.x;
}
}
var x = foo.bar();