snix/third_party/nix/src/tests/lang/parse-okay-crlf.nix
Vincent Ambo 70633a3058 chore(3p/nix/tests): Move language test files to src/tests
These files will be integrated into the evaluator unit tests instead
of running separately via a shell script.

Change-Id: I1d229e73b1d862777f5108c86891689900edefbe
Reviewed-on: https://cl.tvl.fyi/c/depot/+/1275
Tested-by: BuildkiteCI
Reviewed-by: Kane York <rikingcoding@gmail.com>
Reviewed-by: isomer <isomer@tvl.fyi>
2020-07-19 00:49:29 +00:00

17 lines
221 B
Nix

rec {
/* Dit is
een test. */
x =
# Dit is een test.
y;
y = 123;
# CR or CR/LF (but not explicit \r's) in strings should be
# translated to LF.
foo = "multi
line
string
test\r";
z = 456;
}