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