TypeScript/tests/cases/compiler/thisInStaticMethod1.ts

7 lines
91 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class foo {
static x = 3;
static bar() {
return this.x;
}
}
var x = foo.bar();