10 lines
205 B
Nix
10 lines
205 B
Nix
[
|
|
# Should warn
|
|
{ a = rec {}; a.__overrides = {}; }
|
|
rec { __overrides = {}; }
|
|
# Should not warn: Not recursive
|
|
{ __overrides = {}; }
|
|
# Should not warn: Dynamic
|
|
rec { ${"__overrides" + ""} = {}; }
|
|
]
|