Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/Philippe.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/Philippe.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/Philippe.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/Philippe.java
new file mode 100644
index 000000000..f7df8955d
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractMethodWorkSpace/ExtractMethodTests/Philippe.java
@@ -0,0 +1,13 @@
+public class Philippe {
+ void foo(final int out){
+ String tab[] = /*START*/{"hello", "world" } /*END*/;
+ }
+
+ public void foo2(int i) {
+ String /*START*/str = "ggg"/*END*/;
+ }
+
+ public void foo3() {
+ int i= 10, j= 30;
+ }
+}

Back to the top