blob: 9af321222499c8a80bf4e659b8e9b9d75eb0ae56 [file] [log] [blame]
//@ skip if $model == "Apple Watch Series 3" # added by mark-jsc-stress-test.py
var value1 = void 0;
var value2 = "hello";
(function() {
var result = 0;
for (var i = 0; i < 1000000; ++i) {
result += (typeof value1 == "undefined");
result += (typeof value2 == "undefined") << 1;
}
if (result != 1000000)
throw "Error: bad result: " + result;
})();