Remove old test file that snuck in

This commit is contained in:
Jack Williams 2018-09-13 19:33:21 +01:00
parent 36cc154985
commit b27679eee3

View file

@ -1,23 +0,0 @@
// @strictNullChecks: true
// Repro from #20873
let { } = null;
({} = null);
let { } = undefined;
({} = undefined);
let { } = Math.random() ? {} : null;
({} = Math.random() ? {} : null);
let { } = Math.random() ? {} : undefined;
({} = Math.random() ? {} : undefined);
let { } = Math.random() ? null : undefined;
({} = Math.random() ? null : undefined);