Files
openide/java/java-tests/testData/inspection/inconsistentTextBlockIndent/beforeDesiredIndentIntersectsTabFromContent.java
2025-04-15 08:34:10 +00:00

11 lines
144 B
Java

// "Indent text block with spaces only" "true"
class Foo {
void test() {
String colors = """
red
<caret> green
blue""";
}
}