forked from lix-project/lix
add test for inherit expr printing
(cherry picked from commit 73065a400d176b21f518c1f4ece90c31318b218d)
Change-Id: I9356d8084d241a7904b66554d7c4194f8433edf7
This commit is contained in:
parent
0c19e6b56c
commit
3e43f4aeff
1
tests/functional/lang/parse-okay-inherits.exp
Normal file
1
tests/functional/lang/parse-okay-inherits.exp
Normal file
|
@ -0,0 +1 @@
|
|||
(let c = { }; b = 2; in { a = 1; inherit b ; d = (c).d; e = (c).e; f = 3; })
|
9
tests/functional/lang/parse-okay-inherits.nix
Normal file
9
tests/functional/lang/parse-okay-inherits.nix
Normal file
|
@ -0,0 +1,9 @@
|
|||
let
|
||||
c = {};
|
||||
b = 2;
|
||||
in {
|
||||
a = 1;
|
||||
inherit b;
|
||||
inherit (c) d e;
|
||||
f = 3;
|
||||
}
|
Loading…
Reference in a new issue