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

8 lines
249 B
TypeScript

class TestFile {
foo(message: string): () => string {
/// <summary>Test summary</summary>
/// <param name="message" type="String" />
/// <returns type="Function" />
return () => message + this.name;
}
}