|
23 | 23 |
|
24 | 24 | /*
|
25 | 25 | * @test
|
26 |
| - * @bug 8234729 |
| 26 | + * @bug 8234729 8242214 |
27 | 27 | * @summary Javac should eagerly change code generation for method references to avert IllegalAccessError in future.
|
| 28 | + * @compile ProtectedInaccessibleMethodRefTest2.java |
28 | 29 | * @run main ProtectedInaccessibleMethodRefTest2
|
29 | 30 | */
|
30 | 31 |
|
31 | 32 | import pack.I;
|
32 | 33 | import pack.J;
|
33 | 34 |
|
| 35 | +import java.lang.reflect.Method; |
34 | 36 | import java.nio.file.Path;
|
35 | 37 | import java.nio.file.Paths;
|
36 | 38 | import java.util.function.Function;
|
37 |
| -import java.lang.reflect.Method; |
38 |
| -import java.util.concurrent.Callable; |
| 39 | +import java.util.Arrays; |
| 40 | +import java.util.HashSet; |
| 41 | +import java.util.List; |
| 42 | +import java.util.Set; |
| 43 | +import java.util.function.BiFunction; |
39 | 44 |
|
40 | 45 | public final class ProtectedInaccessibleMethodRefTest2 extends I {
|
41 | 46 |
|
42 | 47 | public static void main(String... args) {
|
43 | 48 | ProtectedInaccessibleMethodRefTest2 m = new ProtectedInaccessibleMethodRefTest2();
|
44 | 49 | m.test(Paths.get("test"));
|
45 |
| - // Verify that the method reference has been folded into a lambda. |
46 |
| - boolean lambdaFound = false; |
| 50 | + // Verify that the method references have been folded into lambdas: |
| 51 | + Set<String> methodNames = new HashSet<>(); |
47 | 52 | for (Method meth : ProtectedInaccessibleMethodRefTest2.class.getDeclaredMethods()) {
|
48 |
| - if (meth.getName().equals("lambda$test$0")) { |
49 |
| - lambdaFound = true; |
50 |
| - break; |
51 |
| - } |
| 53 | + methodNames.add(meth.getName()); |
52 | 54 | }
|
53 |
| - if (!lambdaFound) { |
| 55 | + List<String> expectedMethods = |
| 56 | + Arrays.asList("lambda$test$0", "lambda$test$1", "lambda$test$2"); |
| 57 | + if (!methodNames.containsAll(expectedMethods)) { |
54 | 58 | throw new AssertionError("Did not find evidence of new code generation");
|
55 | 59 | }
|
56 | 60 | }
|
57 | 61 |
|
58 | 62 | void test(Path outputDir) {
|
59 |
| - Sub c = new Sub(this::readFile); |
60 |
| - c.check(outputDir); |
| 63 | + Sub c1 = new Sub(this::readFile); |
| 64 | + c1.check(outputDir); |
| 65 | + Sub c2 = new Sub(ProtectedInaccessibleMethodRefTest2::readFile, this); |
| 66 | + c2.check(outputDir); |
| 67 | + Sub c3 = new Sub(ProtectedInaccessibleMethodRefTest2::readFile2); |
| 68 | + c3.check(outputDir); |
61 | 69 | }
|
| 70 | + |
62 | 71 | public class Sub extends J {
|
63 | 72 | Sub(Function<Path,String> fileReader) {
|
64 | 73 | super(fileReader);
|
65 | 74 | }
|
| 75 | + Sub(BiFunction<ProtectedInaccessibleMethodRefTest2, Path,String> fileReader, |
| 76 | + ProtectedInaccessibleMethodRefTest2 instance) { |
| 77 | + super(p -> fileReader.apply(instance, p)); |
| 78 | + } |
66 | 79 | }
|
67 | 80 | }
|
0 commit comments