Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test25/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test25/in/A.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test25/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test25/in/A.java
new file mode 100644
index 000000000..767ac7c54
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test25/in/A.java
@@ -0,0 +1,13 @@
+//5, 32, 5, 32
+package p;
+
+class A {
+ private static final int CONST = 9;
+
+ /*
+ * (non-Javadoc) comment
+ */
+ public void foo() {
+ final int lineNumber2= /*preserve*/CONST/*this*/;
+ }
+}

Back to the top