mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-15 10:46:15 +02:00
9fae50ed4b
So that in the next commit we can see what changes about this test
31 lines
227 B
Nix
31 lines
227 B
Nix
let
|
|
string = "str";
|
|
in [
|
|
/some/path
|
|
|
|
''${/some/path}''
|
|
|
|
''
|
|
${/some/path}''
|
|
|
|
''${/some/path}
|
|
end''
|
|
|
|
string
|
|
|
|
''${string}''
|
|
|
|
''
|
|
${string}''
|
|
|
|
''${string}
|
|
end''
|
|
|
|
''''
|
|
|
|
''
|
|
''
|
|
|
|
''
|
|
end''
|
|
]
|