about summary refs log tree commit diff
path: root/tvix/eval/src/tests/nix_tests/eval-fail-assert.nix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/eval/src/tests/nix_tests/eval-fail-assert.nix')
-rw-r--r--tvix/eval/src/tests/nix_tests/eval-fail-assert.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/nix_tests/eval-fail-assert.nix b/tvix/eval/src/tests/nix_tests/eval-fail-assert.nix
new file mode 100644
index 0000000000..3b7a1e8bf0
--- /dev/null
+++ b/tvix/eval/src/tests/nix_tests/eval-fail-assert.nix
@@ -0,0 +1,5 @@
+let {
+  x = arg: assert arg == "y"; 123;
+
+  body = x "x";
+}
\ No newline at end of file