blob: a6a40037a964c3cb7813d54a73439dd1778759b4 (
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/
* Contributor: Jeff Walden <jwalden+code@mit.edu>
*/
options("strict");
for (var i = 0; i < 5; i++)
Boolean.prototype = 42;
reportCompare(true, true);
|