Detect escaped backslashes

#KT-15761 Fixed
This commit is contained in:
Dmitry Neverov
2017-05-09 21:58:38 +02:00
committed by Simon Ogorodnik
parent 9c4f897d31
commit 31478f8efa
5 changed files with 38 additions and 1 deletions
@@ -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";
}