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

31 lines
291 B
TypeScript

class A
{
constructor() {
this.foo: any;
this.bar: any;
}
baz() {
this.foo = "foo";
this.bar = "bar";
[1, 2].forEach((p) => this.foo);
[1, 2].forEach((p) => this.bar);
}
}
var a = new A();
a.baz();