nix-gh/tests/lang/parse-okay-crlf.nix

18 lines
221 B
Nix
Raw Normal View History

2006-08-16 12:23:02 +02:00
rec {
/* Dit is
een test. */
x =
# Dit is een test. y;
y = 123;
2006-08-16 12:29:43 +02:00
# CR or CR/LF (but not explicit \r's) in strings should be
# translated to LF.
2006-08-16 12:23:02 +02:00
foo = "multi line
string
test\r";
z = 456; }