Files
nix-js/nix-js/tests/lang/eval-okay-eq.nix

14 lines
108 B
Nix

[
"foobar"
(rec {
x = 1;
y = x;
})
] == [
("foo" + "bar")
({
x = 1;
y = 1;
})
]