Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java14
1 files changed, 14 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java
new file mode 100644
index 000000000..c2d914e7b
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java
@@ -0,0 +1,14 @@
+package bugs_in;
+
+public class Test_94426 {
+ /**
+ * @see Other#foo()
+ */
+ public void toInline() {
+ System.out.println("foo");
+ }
+
+ void m() {
+ toInline();
+ }
+}

Back to the top