add test for inherit expr printing

This commit is contained in:
pennae 2024-01-27 16:33:34 +01:00
parent 8669c02468
commit 73065a400d
2 changed files with 10 additions and 0 deletions

View file

@ -0,0 +1 @@
(let c = { }; b = 2; in { a = 1; inherit b ; d = (c).d; e = (c).e; f = 3; })

View file

@ -0,0 +1,9 @@
let
c = {};
b = 2;
in {
a = 1;
inherit b;
inherit (c) d e;
f = 3;
}