blob: 2a19c5c515238286d8c8840725b5cf0c0a05eed4 [file] [log] [blame]
// |jit-test| error: TypeError
new DoWhileObject;
function DoWhileObject(breakOut, breakIn, iterations, loops) {
loops.prototype = new DoWhile;
this.looping;
}
function DoWhile(object) {
do {} while (object);
}