author | sundar |
Wed, 16 Dec 2015 16:42:03 +0530 | |
changeset 34735 | 0f41d334aa24 |
parent 31925 | 85c87bc2f1f3 |
permissions | -rw-r--r-- |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
1 |
/* |
31925 | 2 |
* Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved. |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
31925 | 4 |
* |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
31925 | 8 |
* |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
13 |
* accompanied this code). |
31925 | 14 |
* |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
31925 | 18 |
* |
27822
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
21 |
* questions. |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
22 |
*/ |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
23 |
|
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
24 |
/** |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
25 |
* JDK-8066222: too strong assertion on function expression names |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
26 |
* |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
27 |
* @test |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
28 |
* @run |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
29 |
*/ |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
30 |
|
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
31 |
// Has to print "SUCCESS" |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
32 |
(function x (x){print(x)})("SUCCESS"); |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
33 |
|
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
34 |
// Has to print "undefined" and "1", not the function source in any case. |
a3866b9fb44d
8066222: too strong assertion on function expression names
attila
parents:
diff
changeset
|
35 |
(function x(){print(x); var x=1; print(x)})(); |