diff options
author | Yuki Tanaka <uki00a@gmail.com> | 2020-12-05 23:49:05 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-05 15:49:05 +0100 |
commit | d72310f139661263fdb4d77c3e311130ac23d971 (patch) | |
tree | 4ad9876dd8afce039acd9391106870c9d3e2a339 /std/encoding/testdata | |
parent | 4f0dc2c51df966dc7bfd1148aee5d311edafbc47 (diff) |
fix(std/encoding): Rewrite toml parser not to use eval() (#8624)
Diffstat (limited to 'std/encoding/testdata')
-rw-r--r-- | std/encoding/testdata/string.toml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/std/encoding/testdata/string.toml b/std/encoding/testdata/string.toml index 05f425f11..640717d0e 100644 --- a/std/encoding/testdata/string.toml +++ b/std/encoding/testdata/string.toml @@ -32,3 +32,5 @@ trimmed in raw strings. withApostrophe = "What if it's not?" withSemicolon = "const message = 'hello world';" withHexNumberLiteral = "Prevent bug from stripping string here ->0xabcdef" +withUnicodeChar1 = "\u3042" +withUnicodeChar2 = "Deno\U01F995" |