aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/repl_characterization/data/idempotent.test
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/repl_characterization/data/idempotent.test')
-rw-r--r--tests/functional/repl_characterization/data/idempotent.test13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/functional/repl_characterization/data/idempotent.test b/tests/functional/repl_characterization/data/idempotent.test
new file mode 100644
index 000000000..4ab087d45
--- /dev/null
+++ b/tests/functional/repl_characterization/data/idempotent.test
@@ -0,0 +1,13 @@
+A previously unforced thunk in an attribute set does not lead to indentation when it won't evaluate to a nested structure:
+ nix-repl> :p let x = 1 + 2; in [ { inherit x; } { inherit x; } ]
+ [
+ { x = 3; }
+ { x = 3; }
+ ]
+
+Same for a list:
+ nix-repl> :p let x = 1 + 2; in [ [ x ] [ x ] ]
+ [
+ [ 3 ]
+ [ 3 ]
+ ]