1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-07-07 06:01:48 +02:00

Add parser test for indented strings

So that in the next commit we can see what changes about this test
This commit is contained in:
Silvan Mosberger 2024-07-17 02:42:18 +02:00
parent 9300f855fc
commit 9fae50ed4b
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1 @@
(let string = "str"; in [ (/some/path) ((/some/path)) (("" + /some/path)) ((/some/path + "\n end")) (string) ((string)) (("" + string)) ((string + "\n end")) ("") ("") ("end") ])