diff options
author | Alex Crichton <alex@alexcrichton.com> | 2018-10-29 09:47:56 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-29 09:47:56 -0700 |
commit | 2a6d85b0dde5772241a2cf7e0ac8427949bc4112 (patch) | |
tree | 651c289273b112378ea0d63b84ee0324a9b200b9 /test-suite/tests/valid/multiline-string.toml | |
parent | 2fbcf8623acda16ae633dbec41cad28f3bbf9ab4 (diff) | |
parent | 94c95bd15e63520fc2844ffb1bc387d1bc9c79ae (diff) | |
download | milf-rs-2a6d85b0dde5772241a2cf7e0ac8427949bc4112.tar.gz milf-rs-2a6d85b0dde5772241a2cf7e0ac8427949bc4112.zip |
Merge pull request #268 from jmhain/allow-ws-after-bs
Allow whitespace after line ending backslash (#162)
Diffstat (limited to 'test-suite/tests/valid/multiline-string.toml')
-rw-r--r-- | test-suite/tests/valid/multiline-string.toml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test-suite/tests/valid/multiline-string.toml b/test-suite/tests/valid/multiline-string.toml index 15b1143..2c4237f 100644 --- a/test-suite/tests/valid/multiline-string.toml +++ b/test-suite/tests/valid/multiline-string.toml @@ -7,6 +7,11 @@ multiline_empty_four = """\ \ \ """ +multiline_empty_five = """\ + \ + \ + \ + """ equivalent_one = "The quick brown fox jumps over the lazy dog." equivalent_two = """ @@ -21,3 +26,9 @@ equivalent_three = """\ fox jumps over \ the lazy dog.\ """ + +equivalent_four = """\ + The quick brown \ + fox jumps over \ + the lazy dog.\ + """ |