TypeScript/tests/baselines/reference/detachedCommentAtStartOfFunctionBody2.errors.txt

12 lines
473 B
Plaintext
Raw Normal View History

2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/detachedCommentAtStartOfFunctionBody2.ts (1 errors) ====
class TestFile {
foo(message: string): () => string {
/// <summary>Test summary</summary>
/// <param name="message" type="String" />
/// <returns type="Function" />
return () => message + this.name;
~~~~
!!! Property 'name' does not exist on type 'TestFile'.
}
}