mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
5 lines
222 B
Nix
5 lines
222 B
Nix
|
assert
|
||
|
{ foo = { type = "derivation"; outPath = "/nix/store/0"; ignored = abort "not ignored"; }; }
|
||
|
==
|
||
|
{ foo = { type = "derivation"; outPath = "/nix/store/1"; ignored = abort "not ignored"; }; };
|
||
|
throw "unreachable"
|