Address more comments and remove temp test.

I added the temp test by mistake.
This commit is contained in:
Nathan Shively-Sanders 2016-02-16 13:00:21 -08:00
parent 41bb446865
commit a014edf55a
2 changed files with 2 additions and 11 deletions

View file

@ -1,9 +0,0 @@
//@strictThis: true
interface A { a: number; m(this: this): number }
interface B { b: number, m(this: this): number }
interface C { c: number; m(): number }
let a: A;
let ab: A | B;
let abc: A | B | C;
// ab.m().length;
abc.m().length; // should be OK? this: any, right?