Detect escaped backslashes
#KT-15761 Fixed
This commit is contained in:
committed by
Simon Ogorodnik
parent
9c4f897d31
commit
31478f8efa
@@ -0,0 +1,8 @@
|
||||
public class A {
|
||||
private String s1 = "\1";
|
||||
private String s2 = "\\1";
|
||||
private String s3 = "\\\1";
|
||||
private String s4 = "\\\\1";
|
||||
private String s5 = "\\\\\1";
|
||||
private String s6 = "\1\1";
|
||||
}
|
||||
Reference in New Issue
Block a user