TypeScript/tests/cases/compiler/overloadOnConstAsTypeAnnotation.ts

3 lines
88 B
TypeScript
Raw Normal View History

// @allowUnreachableCode: true
2015-12-28 21:42:56 +01:00
var f: (x: 'hi') => number = (x: 'hi') => { return 1; };