Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test22/in/Consts.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test22/in/Consts.java11
1 files changed, 11 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test22/in/Consts.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test22/in/Consts.java
new file mode 100644
index 000000000..030b0affe
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineConstant/canInline/test22/in/Consts.java
@@ -0,0 +1,11 @@
+package q;
+
+import p.A;
+import r.Third;
+import static p.A.getCount2;
+import static r.Third.B;
+
+public interface Consts {
+ int I= 1;
+ int III= I + A.getCount() + getCount2() + Third.A + B;
+} \ No newline at end of file

Back to the top