Add testcase for attrset using __overrides and dynamic attrs

(cherry picked from commit cdadbf770855e828a0f64d70a47db43e920ad137)
This commit is contained in:
Puck Meerburg 2019-11-25 13:03:54 +00:00 committed by Eelco Dolstra
parent 59bbc31701
commit 9879e25473
2 changed files with 5 additions and 0 deletions

View file

@ -0,0 +1 @@
{ __overrides = { bar = "qux"; }; bar = "qux"; foo = "bar"; }

View file

@ -0,0 +1,4 @@
rec {
"${"foo"}" = "bar";
__overrides = { bar = "qux"; };
}