about summary refs log tree commit diff
path: root/tvix/eval/src/tests/nix_tests/parse-okay-crlf.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;
}