commit | 801af259b759a8343c0ab4b079fa30a8e2606103 | [log] [tgz] |
---|---|---|
author | Christoffer Quist Adamsen <christofferqa@google.com> | Wed Jun 21 14:20:08 2023 +0200 |
committer | Christoffer Adamsen <christofferqa@google.com> | Wed Jun 21 12:42:17 2023 +0000 |
tree | 05a54ecfe6ed111f45a7511af3d3a276d13eaf2b | |
parent | 9be2ca32c17d4ea38e93224cb6df72f93423faf1 [diff] [blame] |
Allow access modification by default Change-Id: I9ada985b4e42154879330b448524a4d6c4f8a952
diff --git a/src/test/examples/classmerging/ConflictInGeneratedNameTest.java b/src/test/examples/classmerging/ConflictInGeneratedNameTest.java index 528f9bf..e76a8e3 100644 --- a/src/test/examples/classmerging/ConflictInGeneratedNameTest.java +++ b/src/test/examples/classmerging/ConflictInGeneratedNameTest.java
@@ -51,6 +51,7 @@ } // There is a private method in B with the same name as this one. + @NoAccessModification private String getName() { return name; } @@ -101,10 +102,12 @@ super.boo(); } + @NoAccessModification private void boo$classmerging$ConflictInGeneratedNameTest$A() { print("In B.boo$classmerging$ConflictInGeneratedNameTest$A()"); } + @NoAccessModification private String getName() { return name; }