blob: e9043225c899b7c9c8406b7219caa4656a4bdbb0 [file] [log] [blame]
function fna() {}
fna.prototype = undefined;
new fna;
function fnb() {}
fnb.prototype = null;
new fnb;
function fnc() {}
fnc.prototype = 3;
new fnc;
function fnd() {}
fnd.prototype = true;
new fnd;
function fne() {}
fne.prototype = "foo";
new fne;
function fnf() {}
fnf.prototype = /foo/;
new fnf;