1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

add path antiqutations test

This commit is contained in:
Taeer Bar-Yam 2021-08-06 07:06:52 -04:00
parent 8f9429dcab
commit 624162c729

View file

@ -0,0 +1,12 @@
let
foo = "foo";
in
{
simple = ./${foo};
surrounded = ./a-${foo}-b;
absolute = /${foo};
expr = ./${foo + "/bar"};
home = ~/${foo};
notfirst = ./bar/${foo};
slashes = /${foo}/${"bar"};
}