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

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

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

}