aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/eval-fail-assert-nested-bool.nix
blob: 2285769839e6af4ca37affb73e463c902e989190 (about) (plain) (blame)
1
2
3
4
5
6
assert
  { a.b = [ { c.d = true; } ]; }
  ==
  { a.b = [ { c.d = false; } ]; };

abort "unreachable"