TypeScript/tests/baselines/reference/validVoidValues.types
2014-08-15 14:37:48 -07:00

14 lines
224 B
Plaintext

=== tests/cases/conformance/types/primitives/void/validVoidValues.ts ===
var x: void;
>x : void
x = undefined;
>x = undefined : undefined
>x : void
>undefined : undefined
x = null;
>x = null : null
>x : void