blob: 7c4333668df828d71620a273da1cc7e6cbd7dd38 (
plain) (
tree)
|
|
# For an explanation of this behavior see //tvix/docs/value-pointer-equality.md
let
g = x:
owo: "th" + x;
in
[
(
{ q = g "ia"; } == { q = g ("i"+"a"); }
)
(
[ (g "ia") ] == [ (g ("i"+"a")) ]
)
]
|