aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/parse-okay-crlf.nix
diff options
context:
space:
mode:
authorRutger Broekhoff2025-07-07 21:52:08 +0200
committerRutger Broekhoff2025-07-07 21:52:08 +0200
commitba61dfd69504ec6263a9dee9931d93adeb6f3142 (patch)
treed6c9b78e50eeab24e0c1c09ab45909a6ae3fd5db /test/testdata/parse-okay-crlf.nix
downloadverified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.tar.gz
verified-dyn-lang-interp-ba61dfd69504ec6263a9dee9931d93adeb6f3142.zip
Initialize repository
Diffstat (limited to 'test/testdata/parse-okay-crlf.nix')
-rw-r--r--test/testdata/parse-okay-crlf.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/testdata/parse-okay-crlf.nix b/test/testdata/parse-okay-crlf.nix
new file mode 100644
index 0000000..21518d4
--- /dev/null
+++ b/test/testdata/parse-okay-crlf.nix
@@ -0,0 +1,17 @@
1rec {
2
3 /* Dit is
4 een test. */
5
6 x =
7 # Dit is een test. y;
8
9 y = 123;
10
11 # CR or CR/LF (but not explicit \r's) in strings should be
12 # translated to LF.
13 foo = "multi line
14 string
15 test\r";
16
17 z = 456; }