TypeScript/tests/baselines/reference/strictMode3.types
2014-08-15 14:37:48 -07:00

21 lines
242 B
Plaintext

=== tests/cases/compiler/strictMode3.ts ===
"use strict";
class A {
>A : A
}
class B extends A {
>B : B
>A : A
}
function foo() {
>foo : () => any
return this.window;
>this.window : any
>this : any
>window : any
}