about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-coerce-opadd.nix
blob: e79e521f8ad9cf06c923347619129b8c0b5e056b (plain) (blame)
1
2
3
4
5
6
7
[
  ({ __toString = _: "lord"; } + "nikon")
  ("zero" + { __toString = _: "cool"; })
  (/tmp/31337 + "h4x0r")
  ("foo" + { outPath = "blah"; })
  ({ outPath = "blah"; } + "foo")
]