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

12 lines
240 B
JavaScript

//// [commentOnSignature1.ts]
/*! Keep this pinned comment */
function foo(n: number): void;
// Don't keep this comment.
function foo(s: string): void;
function foo(a: any): void {
}
//// [commentOnSignature1.js]
function foo(a) {
}