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

9 lines
122 B
Plaintext

=== tests/cases/compiler/strictMode2.ts ===
"use strict";
function foo() {
>foo : () => number
return 30;
}