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

Back to the top