Files
openide/java/java-tests/testData/refactoring/extractMethodNew/NoExpressionFormatting1.java
Alexandr Suhinin 9c7991944f extract method test: separate formatting tests
GitOrigin-RevId: 26fd0636cfc3cba75f1c09cc6ff0ceaab43d40ae
2020-03-31 12:32:01 +00:00

5 lines
121 B
Java

class C {
void foo(Object o) {
<selection>((Runnable)(() -> System.out.println()))</selection>.run();
}
}