1
1
Fork 0
mirror of https://github.com/NixOS/nix.git synced 2025-11-28 21:21:00 +01:00

tests: add tests for dynamic attribute in let and inherit

Regression tests for the previous commit.

Co-authored-by: Sergei Zimmerman <sergei@zimmerman.foo>
Co-authored-by: piegames <git@piegames.de>
This commit is contained in:
Taeer Bar-Yam 2025-11-25 17:46:35 +01:00 committed by Sergei Zimmerman
parent 97abcda9cc
commit 0c0a41a81a
No known key found for this signature in database
13 changed files with 68 additions and 0 deletions

View file

@ -0,0 +1,6 @@
let
a = 1;
in
{
inherit ${"a" + ""};
}