TypeScript/tests/baselines/reference/modFunctionCrash.symbols
2015-04-15 16:44:20 -07:00

16 lines
506 B
Plaintext

=== tests/cases/compiler/modFunctionCrash.ts ===
declare module Q {
>Q : Symbol(Q, Decl(modFunctionCrash.ts, 0, 0))
function f(fn:()=>void); // typechecking the function type shouldnot crash the compiler
>f : Symbol(f, Decl(modFunctionCrash.ts, 0, 18))
>fn : Symbol(fn, Decl(modFunctionCrash.ts, 1, 15))
}
Q.f(function() {this;});
>Q.f : Symbol(Q.f, Decl(modFunctionCrash.ts, 0, 18))
>Q : Symbol(Q, Decl(modFunctionCrash.ts, 0, 0))
>f : Symbol(Q.f, Decl(modFunctionCrash.ts, 0, 18))