diff options
Diffstat (limited to 'test/testdata/eval-fail-assert.nix')
-rw-r--r-- | test/testdata/eval-fail-assert.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testdata/eval-fail-assert.nix b/test/testdata/eval-fail-assert.nix new file mode 100644 index 0000000..3b7a1e8 --- /dev/null +++ b/test/testdata/eval-fail-assert.nix | |||
@@ -0,0 +1,5 @@ | |||
1 | let { | ||
2 | x = arg: assert arg == "y"; 123; | ||
3 | |||
4 | body = x "x"; | ||
5 | } \ No newline at end of file | ||