TypeScript/tests/cases/compiler/commentOnSignature1.ts
2014-07-12 17:30:19 -07:00

6 lines
No EOL
157 B
TypeScript

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