mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 06:42:28 +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" |