test/nashorn/script/basic/JDK-8066227.js
author michaelm
Wed, 30 Oct 2019 11:53:07 +0000
branchunixdomainchannels
changeset 58856 b2f0339a4cad
parent 47216 71c04702a3d5
permissions -rw-r--r--
removing unnecessary diffs from mainline
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     1
/*
31925
85c87bc2f1f3 8132092: Nashorn copyright has to be updated
sundar
parents: 27969
diff changeset
     2
 * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
31925
85c87bc2f1f3 8132092: Nashorn copyright has to be updated
sundar
parents: 27969
diff changeset
     4
 *
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     7
 * published by the Free Software Foundation.
31925
85c87bc2f1f3 8132092: Nashorn copyright has to be updated
sundar
parents: 27969
diff changeset
     8
 *
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    13
 * accompanied this code).
31925
85c87bc2f1f3 8132092: Nashorn copyright has to be updated
sundar
parents: 27969
diff changeset
    14
 *
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
31925
85c87bc2f1f3 8132092: Nashorn copyright has to be updated
sundar
parents: 27969
diff changeset
    18
 *
27969
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    21
 * questions.
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    22
 */
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    23
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    24
/**
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    25
 * JDK-8066227: CodeGenerator load unitialized slot
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    26
 *
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    27
 * @test
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    28
 * @run
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    29
 */
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    30
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    31
print((function () { var x; (x += x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    32
print((function () { var x; (x -= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    33
print((function () { var x; (x *= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    34
print((function () { var x; (x /= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    35
print((function () { var x; (x %= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    36
print((function () { var x; (x <<= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    37
print((function () { var x; (x >>= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    38
print((function () { var x; (x >>>= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    39
print((function () { var x; (x |= x = 0); return x; })());
c03b64ccbd0f 8066227: CodeGenerator load unitialized slot
attila
parents:
diff changeset
    40
print((function () { var x; (x &= x = 0); return x; })());