about summary refs log tree commit diff
path: root/tvix/eval/src/tests/tvix_tests/eval-okay-builtins-getattr.nix
blob: 87a2adbcd3dda7eb2516c68ccb35422ce1dbc26c (plain) (blame)
1
2
3
4
5
6
[
  (builtins.getAttr "foo" { foo = 1; bar = 2; baz = 3; })
  (builtins.getAttr "bar" { foo = 1; bar = 2; baz = 3; })
  (builtins.getAttr "baz" { foo = 1; bar = 2; baz = 3; })
  (builtins.getAttr "foo" { foo = { bar = { baz = 3; }; }; })
]