Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test97/out/A.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test97/out/A.java18
1 files changed, 18 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test97/out/A.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test97/out/A.java
new file mode 100644
index 000000000..e693ef51f
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractInterface/test97/out/A.java
@@ -0,0 +1,18 @@
+package p;
+
+public class A implements I {
+ /* (non-Javadoc)
+ * @see p.I#foo()
+ */
+ public int foo() {
+ return 0;
+ }
+}
+
+class Tester {
+ void bar() {
+ I t= null;
+ int i= t.foo();
+ t.hashCode();
+ }
+}

Back to the top