Files
nix-js/nix-js/tests/lang/eval-fail-assert-equal-derivations.nix

16 lines
275 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"