about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-catAttrs.nix
blob: edac76d4461a4196b63058edb1758696ffe64409 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
builtins.catAttrs "foo" [
  { foo = 21; }
  { bar = 23; foo = "+"; }
  { }
  { bar = 12; }
  { foo = 21 + 0; }
  { foo = "="; }
  ({ bar = 13; } // { baz = 89; })
  { foo = 42; bar = 33; }
]