Files
openide/java/java-tests/testData/codeInsight/surroundWith/BlockedByPSI_after.java
T
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 {
}
}
}