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

15 lines
238 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
>null : null