Remove irrelevant TODO

This commit is contained in:
Agus Zubiaga 2024-10-05 21:56:58 -03:00
parent e8d7820f34
commit 7871ba182d
No known key found for this signature in database

View file

@ -444,7 +444,6 @@ fn contains_unexposed_type(
Malformed(_) | Inferred | Wildcard | BoundVariable(_) => false,
Function(loc_args, _arrow, loc_ret) => {
// [purity-inference] TODO: arrow
let loc_args_contains_unexposed_type = loc_args.iter().any(|loc_arg| {
contains_unexposed_type(&loc_arg.value, exposed_module_ids, module_ids)
});