diff options
Diffstat (limited to 'tests/data/extras/valid/burntsushi-repo/string-escape-tricky.toml')
-rw-r--r-- | tests/data/extras/valid/burntsushi-repo/string-escape-tricky.toml | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/data/extras/valid/burntsushi-repo/string-escape-tricky.toml b/tests/data/extras/valid/burntsushi-repo/string-escape-tricky.toml new file mode 100644 index 0000000..dc204cb --- /dev/null +++ b/tests/data/extras/valid/burntsushi-repo/string-escape-tricky.toml @@ -0,0 +1,15 @@ +end_esc = "String does not end here\" but ends here\\" +lit_end_esc = 'String ends here\' + +multiline_unicode = """ +\u00a0""" + +multiline_not_unicode = """ +\\u0041""" + +multiline_end_esc = """When will it end? \"""...""\" should be here\"""" + +lit_multiline_not_unicode = ''' +\u007f''' + +lit_multiline_end = '''There is no escape\''' |