about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/parse-okay-crlf.nix
blob: 21518d4c6d80101a4ff6412f98a48cac2abe1b96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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;
}