Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephan Herrmann2010-04-02 00:07:50 +0000
committerStephan Herrmann2010-04-02 00:07:50 +0000
commit1a8cab8e0c0864b6118bb7a8071b1a92acd2d5a2 (patch)
treeefb5e3e49c731a00f0fa03b126fcd9b9218b85cd /testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/InlineMethodWorkspace/TestCases/bugs_in/Test_94426.java
parent68b1978746fbf6420cd774928be4dd7fc99f9924 (diff)
downloadorg.eclipse.objectteams-1a8cab8e0c0864b6118bb7a8071b1a92acd2d5a2.tar.gz
org.eclipse.objectteams-1a8cab8e0c0864b6118bb7a8071b1a92acd2d5a2.tar.xz
org.eclipse.objectteams-1a8cab8e0c0864b6118bb7a8071b1a92acd2d5a2.zip
initial commit in accordance with CQ 3784
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