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

9 lines
123 B
TypeScript

class Foo {
private pvar = 0;
constructor() {
var n = this.pvar;
}
public meth() { var q = this.pvar;}
}