nix-super/tests/functional/lang/eval-fail-assert-nested-bool.nix

6 lines
100 B
Nix
Raw Normal View History

2024-07-05 17:43:48 +03:00
assert
{ a.b = [ { c.d = true; } ]; }
==
{ a.b = [ { c.d = false; } ]; };
abort "unreachable"