mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
9fae50ed4b
So that in the next commit we can see what changes about this test
32 lines
227 B
Nix
32 lines
227 B
Nix
let
|
|
string = "str";
|
|
in [
|
|
/some/path
|
|
|
|
''${/some/path}''
|
|
|
|
''
|
|
${/some/path}''
|
|
|
|
''${/some/path}
|
|
end''
|
|
|
|
string
|
|
|
|
''${string}''
|
|
|
|
''
|
|
${string}''
|
|
|
|
''${string}
|
|
end''
|
|
|
|
''''
|
|
|
|
''
|
|
''
|
|
|
|
''
|
|
end''
|
|
]
|