TypeScript/tests/cases/compiler/autoLift2.ts

31 lines
291 B
TypeScript
Raw Normal View History

2014-07-13 01:04:16 +02:00
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();