Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test9/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test9/in/A.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test9/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test9/in/A.java
new file mode 100644
index 000000000..9d2963fac
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test9/in/A.java
@@ -0,0 +1,12 @@
+package p;
+
+class A {
+ void a(){}
+}
+
+class B extends A {
+ public void m() {
+ super.a();
+ super.a();
+ }
+} \ No newline at end of file

Back to the top