Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Defer reasoning about regions until after regionck #7187

Conversation

nikomatsakis
Copy link
Contributor

This addresses issue #3238. It will also (in the future) enable more specific error messages for region inference failures, though I don't do much with that in this commit.

See first commit for details and brief motivation.

You may want to begin with the last commit, which adds some documentation explaining in a bit more detail some of the issues that arise when trying to handle closures. The docs include some material on how inference will handle closure bounds, though that code is not yet written (hoping to tackle that next).

r? @pcwalton (or anyone, but I guess you are the most versed in the code in question)

This patch makes error handling for region inference failures more
uniform by not reporting *any* region errors until the reigon inference
step. This requires threading through more information about what
caused a region constraint, so that we can still give informative
error messages.

I have only taken partial advantage of this information: when region
inference fails, we still report the same error we always did, despite
the fact that we now know precisely what caused the various constriants
and what the region variable represents, which we did not know before.

This change is required not only to improve error messages but
because the region hierarchy is not in fact fully known until regionck,
because it is not clear where closure bodies fit in (our current
treatment is unsound). Moreover, the relationships between free variables
cannot be fully determined until type inference is otherwise complete.

cc rust-lang#3238.
common supertypes.

This was breaking with the change to regions because of the
(now incorrect) assumpton that our inference code makes,
which is that if a <: b succeeds, there is no need to compute
the LUB/GLB.
thestinger added a commit that referenced this pull request Jul 2, 2013
…-about-regions

Defer reasoning about regions until after regionck
@thestinger thestinger merged commit ab34864 into rust-lang:master Jul 2, 2013
@nikomatsakis nikomatsakis deleted the issue-3238-defer-reasoning-about-regions branch March 30, 2016 16:15
flip1995 pushed a commit to flip1995/rust that referenced this pull request Jun 3, 2021
…p1995,phansch

Add avoid_breaking_exported_api config option

changelog: Add `avoid_breaking_exported_api` config option for [`enum_variant_names`], [`large_types_passed_by_value`], [`trivially_copy_pass_by_ref`], [`unnecessary_wraps`], [`upper_case_acronyms`] and [`wrong_self_convention`].

changelog: Deprecates [`pub_enum_variant_names`] and [`wrong_pub_self_convention`] as the non-pub variants are now configurable.

changelog: Fix various false negatives for `pub` items that are not exported from the crate.

A couple changes to late passes in order to use `cx.access_levels.is_exported` rather than `item.vis.kind.is_pub`.

I'm not sure how to better document the config option or lints that are (not) affected (see comments in rust-lang#6806). Suggestions are welcome. cc `@rust-lang/clippy`

I added `/clippy.toml` to use the config internally and `/tests/clippy.toml` to maintain a default config in ui tests.

Closes rust-lang#6806
Closes rust-lang#4504
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants