Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorManoj Palat2021-01-06 06:49:48 +0000
committerManoj Palat2021-01-06 06:49:48 +0000
commitd83cbb9491eb3ea6bad2de178c89fc3ff54446a4 (patch)
treeefe8333b2dcba0308cd8d877cb8ac78f1d35a99a
parentedea2d66d4aac3bbb21add571d99ea2f933725b0 (diff)
downloadeclipse.jdt.core-d83cbb9491eb3ea6bad2de178c89fc3ff54446a4.tar.gz
eclipse.jdt.core-d83cbb9491eb3ea6bad2de178c89fc3ff54446a4.tar.xz
eclipse.jdt.core-d83cbb9491eb3ea6bad2de178c89fc3ff54446a4.zip
Bug 570106 - [16] Investigate ENUM$VALUE generation in empty local enums
Change-Id: Ic66253f49ecf10b11a0f8a995ab78425786cfdd6 Signed-off-by: Manoj Palat <manpalat@in.ibm.com>
-rw-r--r--org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LocalEnumTest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LocalEnumTest.java b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LocalEnumTest.java
index 1fa8954b33..280d13c35b 100644
--- a/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LocalEnumTest.java
+++ b/org.eclipse.jdt.core.tests.compiler/src/org/eclipse/jdt/core/tests/compiler/regression/LocalEnumTest.java
@@ -4779,7 +4779,7 @@ public void test126() {
}
//https://bugs.eclipse.org/bugs/show_bug.cgi?id=126087
// Commented and created https://bugs.eclipse.org/bugs/show_bug.cgi?id=570106
-public void _test127() throws Exception {
+public void test127() throws Exception {
this.runConformTest(
new String[] {
"X.java",
@@ -4861,7 +4861,7 @@ public void _test127() throws Exception {
}
disassembler = ToolFactory.createDefaultClassFileBytesDisassembler();
- classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator +"X$1Y.class"));
+ classFileBytes = org.eclipse.jdt.internal.compiler.util.Util.getFileByteContent(new File(OUTPUT_DIR + File.separator +"X$1Y$1.class"));
actualOutput =
disassembler.disassemble(
classFileBytes,

Back to the top