TypeScript/tests/baselines/reference/returns.symbols
2016-09-01 09:26:44 -07:00

11 lines
199 B
Plaintext

=== tests/cases/conformance/jsdoc/returns.js ===
/**
* @returns {string} This comment is not currently exposed
*/
function f() {
>f : Symbol(f, Decl(returns.js, 0, 0))
return "";
}