about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/parse-fail-mixed-nested-attrs1.nix
blob: 11e40e66fd1b1b8f89b064d32e24974396c8386f (plain) (blame)
1
2
3
4
{ 
  x.z = 3; 
  x = { y = 3; z = 3; }; 
}