JDK-8019629.js revision 400:313bdcd2fd22
1251881Speter/*
2251881Speter * Copyright (c) 2010, 2013, Oracle and/or its affiliates. All rights reserved.
3251881Speter * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4251881Speter *
5251881Speter * This code is free software; you can redistribute it and/or modify it
6251881Speter * under the terms of the GNU General Public License version 2 only, as
7251881Speter * published by the Free Software Foundation.
8251881Speter *
9251881Speter * This code is distributed in the hope that it will be useful, but WITHOUT
10251881Speter * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11251881Speter * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
12251881Speter * version 2 for more details (a copy is included in the LICENSE file that
13251881Speter * accompanied this code).
14251881Speter *
15251881Speter * You should have received a copy of the GNU General Public License version
16251881Speter * 2 along with this work; if not, write to the Free Software Foundation,
17251881Speter * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18251881Speter *
19251881Speter * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
20251881Speter * or visit www.oracle.com if you need additional information or have any
21251881Speter * questions.
22251881Speter */
23251881Speter
24251881Speter/**
25251881Speter * JDK-8019629: void operator should always evaluate to undefined
26251881Speter *
27251881Speter * @test
28251881Speter * @run
29251881Speter */
30251881Speter
31251881Speterfunction check(str) {
32251881Speter    var val = eval(str);
33251881Speter    if (typeof val !== 'undefined') {
34251881Speter        print("FAILED: " + str + " does not evaluate to 'undefined'");
35251881Speter    }
36251881Speter}
37251881Speter
38251881Spetercheck("void +this");
39251881Spetercheck("void +(void 0)");
40251881Spetercheck("(function f(){return void +(void 0)})()");
41251881Spetercheck("void function() {}");
42251881Speter
43251881Speter