blob: 1609ad326d17e5c48ab2584287260521e1b25bd8 [file] [log] [blame]
// Copyright 2009 the Sputnik authors. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.
/**
* Result of applying "typeof" operator to undefined is "undefined"
*
* @path ch11/11.4/11.4.3/S11.4.3_A3.1.js
* @description typeof undefined === "undefined"
*/
//CHECK#1
if (typeof undefined !== "undefined") {
$ERROR('#1: typeof undefined === "undefined". Actual: ' + (typeof undefined));
}
//CHECK#2
if (typeof void 0 !== "undefined") {
$ERROR('#2: typeof void 0 === "undefined". Actual: ' + (typeof void 0));
}