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

Document comparison used with limits #820

Open
davidtwco opened this issue May 26, 2020 · 4 comments
Open

Document comparison used with limits #820

davidtwco opened this issue May 26, 2020 · 4 comments
Labels
A-attributes Area: Attributes Easy We believe this would not be difficult to actually fix

Comments

@davidtwco
Copy link
Member

davidtwco commented May 26, 2020

rust-lang/rust#72540 makes sure that all comparisons against limits in the compiler are consistent, this should be documented in doc.rust-lang.org/reference/attributes/limits.html. rust-lang/rust#72540 should land before this is documented.

@Havvy
Copy link
Contributor

Havvy commented May 28, 2020

Specifically, how has the comparison changed? Which sentences are now wrong?

@davidtwco
Copy link
Member Author

Specifically, how has the comparison changed? Which sentences are now wrong?

No sentences are now wrong, but sentences could be added which describe that any values within the compiler are considered within the limit if they are less than or equal to the limit (previously this was inconsistent, sometimes less than, sometimes less than or equal).

@Havvy
Copy link
Contributor

Havvy commented May 28, 2020

What about the code examples? Do they compile with the changed code?

@davidtwco
Copy link
Member Author

What about the code examples? Do they compile with the changed code?

The first example still fails as expected (though I had to add semicolons after each of the macro expansions when running with rust-lang/rust#72540 locally - so that example will probably need updated at some point).

The second example failed with a different error than on the reference, but still due to recursion limits:

error[E0275]: overflow evaluating the requirement `fn(): std::marker::Freeze`
  |
  = help: consider adding a `#![recursion_limit="2"]` attribute to your crate (`foo2`)
  = note: required because it appears within the type `[closure@std::rt::lang_start::{{closure}}#0 0:fn()]`

The third example still fails as expected.

@ehuss ehuss added the Easy We believe this would not be difficult to actually fix label Jun 6, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-attributes Area: Attributes Easy We believe this would not be difficult to actually fix
Projects
None yet
Development

No branches or pull requests

3 participants