Files
2024-01-24 20:02:41 +00:00

10 lines
260 B
Java

// "Fix all 'Text block can be replaced with regular string literal' problems in file" "false"
class StringTemplate {
void test(StringTemplate.Processor<Integer, RuntimeException> proc) {
Integer test = proc."""
Hello<caret>
World
""";
}
}