Files
openide/java/java-tests/testData/refactoring/extractMethodAndDuplicatesInplace/ExtractVirtualExpressionFromSubstring.java
Alexandr Suhinin b5b3ceda3d [extract method] IDEA-315737: enable extract method on virtual expressions
GitOrigin-RevId: a6ca3dea5d3ab7ec8237c21a06e366e3e5c68a89
2023-03-20 17:18:51 +00:00

6 lines
146 B
Java

class Test {
void test(){
System.out.println("one" + "two" + "three");
System.out.println("one <selection>two</selection> three");
}
}