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/ExtractTemp/cannotExtract/A_testFail33.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/ExtractTemp/cannotExtract/A_testFail33.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/cannotExtract/A_testFail33.java9
1 files changed, 9 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/cannotExtract/A_testFail33.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/cannotExtract/A_testFail33.java
new file mode 100644
index 000000000..d21fd18ec
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/cannotExtract/A_testFail33.java
@@ -0,0 +1,9 @@
+package p;
+
+class A {
+ void f(int is) {
+ int i= 0;
+ for (;; i= 0) {
+ }
+ }
+}

Back to the top