Files
openide/java/java-tests/testData/refactoring/extractMethod/ExtractAssignmentExpression.java

6 lines
89 B
Java

class Foo {
void foo() {
int x = 0;
int y = <selection>x = 1</selection>;
}
}