Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
ec80c21fd118667fdb2e851da7eea5d76d95eb52
/
.
/
nj2k
/
testData
/
newJ2k
/
strings
/
escapedBackslash.kt
blob: 375da9bebe0cb92db4405ccd82611c30f38752b6 [
file
] [
log
] [
blame
]
class
A
{
private
val s1
=
"\u0001"
private
val s2
=
"\\1"
private
val s3
=
"\\\u0001"
private
val s4
=
"\\\\1"
private
val s5
=
"\\\\\u0001"
private
val s6
=
"\u0001\u0001"
}