-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
In 1.11 beta, #![cfg]
does not mask #![feature]
#34932
Comments
You should be using |
On the one hand, good point. That does solve the issue; I think I didn't try that because I didn't expect it to behave any differently. I retract my "impossible" accusation. On the other hand, this is an observable change in behaviour. |
Its not clear to me how In other words: I would normally be sympathetic to the idea that this is a regression, but I am currently wondering if this was just a latent language bug that the code worked before at all. |
It simply means the entire contents of the crate should be ignored. I use it in |
cc @jseyfried did you make this change? I seem to remember you did it deliberately and for good reason, but I don't remember that reason. |
I find this semantics odd. Since the crate is still present (just empty), while if this I'm willing to accept that this is merely a small discontinuity in the semantic of |
Avoid processing `feature`s on unconfigured crates Fixes rust-lang#34932, a regression caused by rust-lang#34272. r? @nrc
It looks like
rustc
is checkingfeature
attributes before processingcfg
attributes. If so, this is a problem, because it looks like this makes it impossible to write code that optionally uses unstable features.In the example below, the 1.10 compiler correctly ignores the test involving unstable features, but beta does not. In my specific case, this means my CI testing on beta for
newtype_derive
is unavoidably failing.1.12 nightly complaining about unused features is probably the same issue.
Cargo.toml
:lib.rs
:/* empty */
dummy.rs
:The text was updated successfully, but these errors were encountered: