diff options
Diffstat (limited to 'test/testdata/eval-fail-assert-nested-bool.nix')
-rw-r--r-- | test/testdata/eval-fail-assert-nested-bool.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert-nested-bool.nix b/test/testdata/eval-fail-assert-nested-bool.nix new file mode 100644 index 0000000..2285769 --- /dev/null +++ b/test/testdata/eval-fail-assert-nested-bool.nix | |||
@@ -0,0 +1,6 @@ | |||
1 | assert | ||
2 | { a.b = [ { c.d = true; } ]; } | ||
3 | == | ||
4 | { a.b = [ { c.d = false; } ]; }; | ||
5 | |||
6 | abort "unreachable" \ No newline at end of file | ||