diff options
Diffstat (limited to 'tests/lang/parse-okay-crlf.nix')
-rw-r--r-- | tests/lang/parse-okay-crlf.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/lang/parse-okay-crlf.nix b/tests/lang/parse-okay-crlf.nix new file mode 100644 index 000000000000..ea6a0b2f8935 --- /dev/null +++ b/tests/lang/parse-okay-crlf.nix @@ -0,0 +1,17 @@ +rec { + + /* Dit is + een test. */ + + x = + # Dit is een test. y; + + y = 123; + + # CR or CR/LF in strings should be translated to LF (but not + # explicit \r's). + foo = "multi line + string + test\r"; + + z = 456; } |