We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I noticed recently some feature gates that rust_2018_edition does not enable that I think it should:
rust_2018_edition
#![feature(catch_expr)]
#![feature(crate_in_paths)]
#![feature(crate_visibility_modifier)]
#![feature(extern_absolute_paths)]
#![feature(proc_macro)]
#![feature(in_band_lifetimes)]
#![feature(termination_trait_test)]
cc @Manishearth
The text was updated successfully, but these errors were encountered:
Most of these features seem to be enabled already? It's rust_2018_preview. It's only catch_expr and proc_macro that aren't.
rust_2018_preview
Sorry, something went wrong.
7485903
No branches or pull requests
I noticed recently some feature gates that
rust_2018_edition
does not enable that I think it should:#![feature(catch_expr)]
#![feature(crate_in_paths)]
#![feature(crate_visibility_modifier)]
#![feature(extern_absolute_paths)]
#![feature(proc_macro)]
#![feature(in_band_lifetimes)]
#![feature(termination_trait_test)]
cc @Manishearth
The text was updated successfully, but these errors were encountered: