author | rfield |
Thu, 06 Dec 2012 21:55:55 -0800 | |
changeset 14762 | 34956da26ceb |
child 16062 | c64ef2b01401 |
permissions | -rw-r--r-- |
14762
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
1 |
/* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
2 |
* Copyright (c) 2012, Oracle and/or its affiliates. All rights reserved. |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
3 |
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
4 |
* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
5 |
* This code is free software; you can redistribute it and/or modify it |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
6 |
* under the terms of the GNU General Public License version 2 only, as |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
7 |
* published by the Free Software Foundation. |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
8 |
* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
9 |
* This code is distributed in the hope that it will be useful, but WITHOUT |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
10 |
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
11 |
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
12 |
* version 2 for more details (a copy is included in the LICENSE file that |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
13 |
* accompanied this code). |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
14 |
* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
15 |
* You should have received a copy of the GNU General Public License version |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
16 |
* 2 along with this work; if not, write to the Free Software Foundation, |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
17 |
* Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
18 |
* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
19 |
* Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
20 |
* or visit www.oracle.com if you need additional information or have any |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
21 |
* questions. |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
22 |
*/ |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
23 |
|
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
24 |
/* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
25 |
* @test |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
26 |
* @bug 8003881 |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
27 |
* @summary tests Lambda expression with a a security manager at top level |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
28 |
* @compile -XDignore.symbol.file LambdaAccessControlTest.java |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
29 |
* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
30 |
* @run main/othervm LambdaAccessControlTest |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
31 |
*/ |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
32 |
|
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
33 |
public class LambdaAccessControlTest extends LUtils { |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
34 |
public static void main(String... args) { |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
35 |
System.setSecurityManager(new SecurityManager()); |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
36 |
JJ<Integer> iii = (new CC())::impl; |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
37 |
System.out.printf(">>> %s\n", iii.foo(44)); |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
38 |
iii = DD::impl; |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
39 |
System.out.printf(">>> %s\n", iii.foo(44)); |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
40 |
return; |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
41 |
} |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
42 |
} |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
43 |
/* |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
44 |
* support classes for the test |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
45 |
*/ |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
46 |
interface II<T> { Object foo(T x); } |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
47 |
interface JJ<R extends Number> extends II<R> { } |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
48 |
class CC { String impl(int i) { return "impl:"+i; }} |
34956da26ceb
8003881: Prevent lambda implementing inner classes from allowing the creation of new instances
rfield
parents:
diff
changeset
|
49 |
class DD { static String impl(int i) { return "impl:"+i; }} |