aboutsummaryrefslogtreecommitdiffstats
path: root/test/testdata/parse-okay-inherits.nix
blob: 10596c8adeae8a0e3b3bc1c765241ad05712d606 (about) (plain) (blame)
1
2
3
4
5
6
7
8
9
let
  c = {};
  b = 2;
in {
  a = 1;
  inherit b;
  inherit (c) d e;
  f = 3;
}