Files
openide/java/java-tests/testData/refactoring/extractMethodAndDuplicatesInplace/IntroduceSimpleObject.java
Alexandr Suhinin 8a3a0b1d0b [extract method with object] add tests
GitOrigin-RevId: 0e2d72f613e0b8d1f396bd3a28ca32dd834893c7
2023-01-30 21:35:35 +00:00

10 lines
177 B
Java

public class Test {
void test() {
<selection>int x = 0;
int y = 0;
System.out.println();</selection>
System.out.println("Point(" + x + ", " + y + ")");
}
}