diff options
Diffstat (limited to 'test/testdata/eval-okay-float.nix')
-rw-r--r-- | test/testdata/eval-okay-float.nix | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/testdata/eval-okay-float.nix b/test/testdata/eval-okay-float.nix new file mode 100644 index 0000000..b2702c7 --- /dev/null +++ b/test/testdata/eval-okay-float.nix | |||
@@ -0,0 +1,6 @@ | |||
1 | [ | ||
2 | (1.1 + 2.3) | ||
3 | (builtins.add (0.5 + 0.5) (2.0 + 0.5)) | ||
4 | ((0.5 + 0.5) * (2.0 + 0.5)) | ||
5 | ((1.5 + 1.5) / (0.5 * 4.0)) | ||
6 | ] | ||