TypeScript/tests/baselines/reference/validVoidValues.symbols
2015-04-15 16:44:20 -07:00

12 lines
297 B
Plaintext

=== tests/cases/conformance/types/primitives/void/validVoidValues.ts ===
var x: void;
>x : Symbol(x, Decl(validVoidValues.ts, 0, 3))
x = undefined;
>x : Symbol(x, Decl(validVoidValues.ts, 0, 3))
>undefined : Symbol(undefined)
x = null;
>x : Symbol(x, Decl(validVoidValues.ts, 0, 3))