blob: 52d3aa9cdf28339f01921a31a44f6d007ce68893 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* -*- indent-tabs-mode: nil; js-indent-level: 4 -*- */
/*
* Any copyright is dedicated to the Public Domain.
* http://creativecommons.org/licenses/publicdomain/
*/
/* This shouldn't trigger an assertion. */
(function () {
eval("var x=delete(x)")
})();
reportCompare(0, 0, "ok");
|