aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/parse-fail-dup-attrs-2.nix
blob: 2b3b4ccded42f5dc51230013fe17495c6fff2ed3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
rec {

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

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

}