Files
nix-js/fix/tests/tests/lang/eval-fail-assert-equal-derivations-extra.nix
2026-03-14 10:28:43 +08:00

15 lines
223 B
Nix

assert
{
foo = {
type = "derivation";
outPath = "/nix/store/0";
};
} == {
foo = {
type = "derivation";
outPath = "/nix/store/1";
devious = true;
};
};
throw "unreachable"