Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test48/in/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test48/in/A.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test48/in/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test48/in/A.java
new file mode 100644
index 000000000..4691f697f
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test48/in/A.java
@@ -0,0 +1,10 @@
+package p;
+
+class A {
+ public void m() {}
+ public void m1() {}
+ A f(A a){
+ f(a).m1();
+ return a;
+ }
+} \ No newline at end of file

Back to the top