about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/parse-fail-dup-attrs-3.nix
blob: 114d19779f8668723f86375b7eba9dc3c7abbeee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
let {

  as = {
    x = 123;
    y = 456;
  };

  bs = rec {
    x = 789;
    inherit (as) x;
  };
  
}