TypeScript/tests/cases/compiler/privateVisibles.ts

9 lines
123 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
class Foo {
private pvar = 0;
constructor() {
var n = this.pvar;
}
public meth() { var q = this.pvar;}
}