TypeScript/tests/cases/conformance/es6/destructuring/destructuringVoid.ts
2019-04-01 13:33:41 -07:00

4 lines
68 B
TypeScript

// @strictNullChecks: false
declare const v: void;
const {} = v;