about summary refs log blame commit diff
path: root/tests/lang/parse-okay-crlf.nix
blob: ea6a0b2f893574120666e2ea26f59c857e3d2c5f (plain) (tree)
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 in strings should be translated to LF (but not
  # explicit \r's).
  foo = "multi
line
  string
  test\r";

  z = 456;
}