TypeScript/tests/cases/compiler/commentOnParameter2.ts
2017-02-06 18:14:08 -08:00

8 lines
135 B
TypeScript

function commentedParameters(
/* Parameter a */
a /* End of parameter a */
/* Parameter b */
,
b
/* End of parameter b */
){}