about summary refs log tree commit diff
path: root/tvix/eval/src/tests/nix_tests/parse-fail-mixed-nested-attrs2.nix
blob: 17da82e5f0c7e17e0fa028f237fdb5510920a29b (plain) (blame)
1
2
3
4
{ 
  x.y.y = 3; 
  x = { y.y= 3; z = 3; }; 
}