blob: 8ba10e7e7a043b25e9febafc43c997989d57cc08 [file] [log] [blame]
/*global console*/
this.myx = 'mineX';
(function () {
"use strict";
function x() {
if (this) {
console.log(this.myx);
} else {
console.log(this);
}
}
x();
x.call(this);
}.call(this));