Files
openide/java/java-tests/testData/codeInsight/surroundWith/BlockedByPSI_after.java
Dmitry Jemerov 9c8e2379be Move Java-specific part of SurroundWithTest to java-tests module
GitOrigin-RevId: fd78bb663c7e48c87f1dae25b6a04571aa62cf50
2022-05-02 16:17:23 +00:00

10 lines
174 B
Java

class Plin {
public static void write(int startBitInUnit, int bitSize) {
if (startBitInUnit + bitSize > 0) {
<caret>
} else {
}
}
}