Files
Tagir Valeev c0f509d780 [java-inspections] EscapedSpaceInspection: proper unicode escape support
GitOrigin-RevId: 4595d28c6b09fa8ab5e1afe63cc34f95c5a17a86
2022-10-27 09:29:11 +00:00

8 lines
140 B
Java

// "Replace '\s' sequences with spaces" "true-preview"
class X {
void test(String str) {
if (str.matches("\uuu1234 +")) {
}
}
}