mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-18 09:34:34 +07:00
moving tests
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class A {
|
||||
|
||||
Integer f(int i) {
|
||||
return g(i);
|
||||
}
|
||||
|
||||
Integer <caret>g(int i) {
|
||||
if (i > 0) {
|
||||
return new Integer(i);
|
||||
}
|
||||
else {
|
||||
Integer result;
|
||||
result = new Integer(0);
|
||||
return result;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user