Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ExtractMethod/role_in/T_testRoleclass2.java')
-rw-r--r--testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ExtractMethod/role_in/T_testRoleclass2.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ExtractMethod/role_in/T_testRoleclass2.java b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ExtractMethod/role_in/T_testRoleclass2.java
new file mode 100644
index 000000000..bd868b1d9
--- /dev/null
+++ b/testplugins/org.eclipse.objectteams.otdt.ui.tests.refactoring/testdata/ExtractMethod/role_in/T_testRoleclass2.java
@@ -0,0 +1,19 @@
+package role_in;
+
+public team class T_testRoleclass2
+{
+ public class R
+ {
+ private int a, b, c;
+
+ public void foo()
+ {
+ /*[*/c = a + b;/*]*/
+ }
+
+ public void bar()
+ {
+ c = a + b;
+ }
+ }
+} \ No newline at end of file

Back to the top