TypeScript/tests/baselines/reference/functionOnlyHasThrow.js
2014-07-12 17:30:19 -07:00

10 lines
200 B
TypeScript

//// [functionOnlyHasThrow.ts]
function clone():number {
throw new Error("To be implemented");
}
//// [functionOnlyHasThrow.js]
function clone() {
throw new Error("To be implemented");
}