diff options
Diffstat (limited to 'tvix/eval/src/tests/tvix_tests/eval-okay-simple-with.nix')
-rw-r--r-- | tvix/eval/src/tests/tvix_tests/eval-okay-simple-with.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/eval/src/tests/tvix_tests/eval-okay-simple-with.nix b/tvix/eval/src/tests/tvix_tests/eval-okay-simple-with.nix new file mode 100644 index 000000000000..64962b50ff63 --- /dev/null +++ b/tvix/eval/src/tests/tvix_tests/eval-okay-simple-with.nix @@ -0,0 +1,5 @@ +let + set = { + a = 1; + }; +in with set; a |