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

9 lines
136 B
TypeScript

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