TypeScript/tests/baselines/reference/validVoidValues.types

14 lines
224 B
Text
Raw Normal View History

2014-08-15 23:33:16 +02:00
=== 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