Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test63_out.java')
-rw-r--r--testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test63_out.java16
1 files changed, 16 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test63_out.java b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test63_out.java
new file mode 100644
index 000000000..c3c1e941d
--- /dev/null
+++ b/testplugins/org.eclipse.jdt.ui.tests.refactoring/resources/ExtractTemp/canExtract/A_test63_out.java
@@ -0,0 +1,16 @@
+package p;//9, 20 - 9, 23
+
+
+class A {
+ void f() {
+ String x;
+ if (true) {
+ String temp= "i";
+ try{
+ x= temp;
+ } catch (Exception e){
+ x= temp;
+ }
+ }
+ }
+} \ No newline at end of file

Back to the top