aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/eval-fail-assert-nested-bool.nix
diff options
context:
space:
mode:
Diffstat (limited to 'test/testdata/eval-fail-assert-nested-bool.nix')
-rw-r--r--test/testdata/eval-fail-assert-nested-bool.nix6
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 @@
1assert
2 { a.b = [ { c.d = true; } ]; }
3 ==
4 { a.b = [ { c.d = false; } ]; };
5
6abort "unreachable" \ No newline at end of file