Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test8/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test8/in/A.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test8/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test8/in/A.java
new file mode 100644
index 000000000..fde7237f3
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/PullUp/test8/in/A.java
@@ -0,0 +1,15 @@
+package p;
+
+class A {
+ int x;
+}
+
+class B extends A {
+ public void m() {
+ new B(){
+ void f(){
+ super.x++;
+ }
+ };
+ }
+}

Back to the top