diff options
Diffstat (limited to 'test/testdata/eval-okay-let.nix')
-rw-r--r-- | test/testdata/eval-okay-let.nix | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-let.nix b/test/testdata/eval-okay-let.nix new file mode 100644 index 0000000..fe118c5 --- /dev/null +++ b/test/testdata/eval-okay-let.nix | |||
@@ -0,0 +1,5 @@ | |||
1 | let { | ||
2 | x = "foo"; | ||
3 | y = "bar"; | ||
4 | body = x + y; | ||
5 | } | ||