1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 23:03:53 -04:00
nix/tests/functional/lang/parse-okay-inherits.nix

10 lines
80 B
Nix
Raw Normal View History

2024-01-27 10:33:34 -05:00
let
c = {};
b = 2;
in {
a = 1;
inherit b;
inherit (c) d e;
f = 3;
}