TypeScript/tests/baselines/reference/strictMode2.types

9 lines
122 B
Plaintext
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== tests/cases/compiler/strictMode2.ts ===
"use strict";
function foo() {
>foo : () => number
return 30;
}