1<===> not_found/empty/input.scss
2a {b: map-has-key((), 1)}
3
4<===> not_found/empty/output.css
5a {
6  b: false;
7}
8
9<===>
10================================================================================
11<===> not_found/non_empty/input.scss
12a {b: map-has-key((c: d), d)}
13
14<===> not_found/non_empty/output.css
15a {
16  b: false;
17}
18
19<===>
20================================================================================
21<===> found/single/input.scss
22a {b: map-has-key((c: d), c)}
23
24<===> found/single/output.css
25a {
26  b: true;
27}
28
29<===>
30================================================================================
31<===> found/first/input.scss
32a {b: map-has-key((1: 2, 3: 4, 5: 6), 1)}
33
34<===> found/first/output.css
35a {
36  b: true;
37}
38
39<===>
40================================================================================
41<===> found/middle/input.scss
42a {b: map-has-key((1: 2, 3: 4, 5: 6), 3)}
43
44<===> found/middle/output.css
45a {
46  b: true;
47}
48
49<===>
50================================================================================
51<===> found/last/input.scss
52a {b: map-has-key((1: 2, 3: 4, 5: 6), 5)}
53
54<===> found/last/output.css
55a {
56  b: true;
57}
58
59<===>
60================================================================================
61<===> named/input.scss
62a {b: map-has-key($map: (c: d), $key: c)}
63
64<===> named/output.css
65a {
66  b: true;
67}
68
69<===>
70================================================================================
71<===> nested/options.yml
72---
73:todo:
74- sass/libsass#3127
75
76<===> nested/found/partial_path/input.scss
77a {b: map-has-key((c: (d: (e: f))), c, d)}
78
79<===> nested/found/partial_path/output.css
80a {
81  b: true;
82}
83
84<===>
85================================================================================
86<===> nested/found/full_path/input.scss
87a {b: map-has-key((c: (d: (e: f))), c, d, e)}
88
89<===> nested/found/full_path/output.css
90a {
91  b: true;
92}
93
94<===>
95================================================================================
96<===> nested/not_found/top_level/input.scss
97a {b: map-has-key((c: (d: (e: f))), d)}
98
99<===> nested/not_found/top_level/output.css
100a {
101  b: false;
102}
103
104<===>
105================================================================================
106<===> nested/not_found/deep/input.scss
107a {b: map-has-key((c: (d: (e: f))), c, d, g)}
108
109<===> nested/not_found/deep/output.css
110a {
111  b: false;
112}
113
114<===>
115================================================================================
116<===> nested/not_found/too_many_keys/input.scss
117a {b: map-has-key((c: (d: (e: f))), c, d, e, f)}
118
119<===> nested/not_found/too_many_keys/output.css
120a {
121  b: false;
122}
123
124<===>
125================================================================================
126<===> error/type/map/input.scss
127a {b: map-has-key(1, 2)}
128
129<===> error/type/map/error
130Error: $map: 1 is not a map.
131  ,
1321 | a {b: map-has-key(1, 2)}
133  |       ^^^^^^^^^^^^^^^^^
134  '
135  input.scss 1:7  root stylesheet
136
137<===> error/type/map/error-libsass
138Error: argument `$map` of `map-has-key($map, $key)` must be a map
139        on line 1:7 of input.scss, in function `map-has-key`
140        from line 1:7 of input.scss
141>> a {b: map-has-key(1, 2)}
142
143   ------^
144
145<===>
146================================================================================
147<===> error/too_few_args/input.scss
148a {b: map-has-key(1)}
149
150<===> error/too_few_args/error
151Error: Missing argument $key.
152  ,--> input.scss
1531 | a {b: map-has-key(1)}
154  |       ^^^^^^^^^^^^^^ invocation
155  '
156  ,--> sass:map
1571 | @function has-key($map, $key, $keys...) {
158  |           ============================= declaration
159  '
160  input.scss 1:7  root stylesheet
161
162<===> error/too_few_args/error-libsass
163Error: Function map-has-key is missing argument $key.
164        on line 1 of input.scss
165>> a {b: map-has-key(1)}
166
167   ------^
168