aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/lang/parse-okay-rec-set-override-warning.nix
blob: a81d46d534ee5ab2044cb21dbb12494f781bca0e (plain)
1
2
3
4
5
6
7
8
9
[
	# Should warn
	{ a = rec {}; a.__overrides = {}; }
	rec { __overrides = {}; }
	# Should not warn: Not recursive
	{ __overrides = {}; }
	# Should not warn: Dynamic
	rec { ${"__overrides" + ""} = {}; }
]