TypeScript/tests/baselines/reference/ES5SymbolType1.types

11 lines
198 B
Plaintext

=== tests/cases/conformance/Symbols/ES5SymbolType1.ts ===
var s: symbol;
>s : symbol
s.toString();
>s.toString() : string
>s.toString : () => string
>s : symbol
>toString : () => string