about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-okay-attrs4.nix
blob: 43ec81210f38e0a11f8241db72acb2d88b579c9a (plain) (blame)
1
2
3
4
5
6
7
let

  as = { x.y.z = 123; a.b.c = 456; };

  bs = null;

in [ (as ? x) (as ? y) (as ? x.y.z) (as ? x.y.z.a) (as ? x.y.a) (as ? a.b.c) (bs ? x) (bs ? x.y.z) ]