Describe the bug
[nix-shell:~]$ nix repl
Welcome to Nix 2.15.1. Type :? for help.
nix-repl> :p let x = { inherit x; }; in x
{ x = { x = «repeated»; }; }
[nix-shell:~]$ nix-instantiate --eval --strict -E 'let x = { inherit x; }; in x'
{ x = «repeated»; }
Expected behavior
nix-instantiate and nix repl print cycles the same way for the same expression.
Describe the bug
Expected behavior
nix-instantiateandnix replprint cycles the same way for the same expression.