We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8050c19 commit 891ebf9Copy full SHA for 891ebf9
src/etc/check_missing_items.py
@@ -187,3 +187,9 @@ def check_type(ty):
187
check_generic_bound(bound)
188
if item["inner"]["default"]:
189
check_type(item["inner"]["default"])
190
+ elif item["kind"] == "import":
191
+ if item["inner"]["id"]:
192
+ inner_id = item["inner"]["id"]
193
+ assert valid_id(inner_id)
194
+ if inner_id in crate["index"] and inner_id not in visited:
195
+ work_list.add(inner_id)
0 commit comments