Rollup merge of #109029 - compiler-errors:parse-gating, r=jackh726
Gate usages of `dyn*` and const closures in macros We silently accepted `dyn*` and const closures in macros as long as they didn't expand to anything containing these experimental features, unlike other gated features such as `for<'a>` binders on closures, etc. Let's not do that, to make sure nobody begins relying on this.
This commit is contained in:
commit
98fea68470
12 changed files with 61 additions and 27 deletions
|
@ -337,9 +337,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
|
||||||
ast::TyKind::Never => {
|
ast::TyKind::Never => {
|
||||||
gate_feature_post!(&self, never_type, ty.span, "the `!` type is experimental");
|
gate_feature_post!(&self, never_type, ty.span, "the `!` type is experimental");
|
||||||
}
|
}
|
||||||
ast::TyKind::TraitObject(_, ast::TraitObjectSyntax::DynStar, ..) => {
|
|
||||||
gate_feature_post!(&self, dyn_star, ty.span, "dyn* trait objects are unstable");
|
|
||||||
}
|
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
visit::walk_ty(self, ty)
|
visit::walk_ty(self, ty)
|
||||||
|
@ -425,14 +422,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
|
||||||
ast::ExprKind::TryBlock(_) => {
|
ast::ExprKind::TryBlock(_) => {
|
||||||
gate_feature_post!(&self, try_blocks, e.span, "`try` expression is experimental");
|
gate_feature_post!(&self, try_blocks, e.span, "`try` expression is experimental");
|
||||||
}
|
}
|
||||||
ast::ExprKind::Closure(box ast::Closure { constness: ast::Const::Yes(_), .. }) => {
|
|
||||||
gate_feature_post!(
|
|
||||||
&self,
|
|
||||||
const_closures,
|
|
||||||
e.span,
|
|
||||||
"const closures are experimental"
|
|
||||||
);
|
|
||||||
}
|
|
||||||
_ => {}
|
_ => {}
|
||||||
}
|
}
|
||||||
visit::walk_expr(self, e)
|
visit::walk_expr(self, e)
|
||||||
|
@ -594,6 +583,8 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session) {
|
||||||
gate_all!(inline_const_pat, "inline-const in pattern position is experimental");
|
gate_all!(inline_const_pat, "inline-const in pattern position is experimental");
|
||||||
gate_all!(associated_const_equality, "associated const equality is incomplete");
|
gate_all!(associated_const_equality, "associated const equality is incomplete");
|
||||||
gate_all!(yeet_expr, "`do yeet` expression is experimental");
|
gate_all!(yeet_expr, "`do yeet` expression is experimental");
|
||||||
|
gate_all!(dyn_star, "`dyn*` trait objects are experimental");
|
||||||
|
gate_all!(const_closures, "const closures are experimental");
|
||||||
|
|
||||||
// All uses of `gate_all!` below this point were added in #65742,
|
// All uses of `gate_all!` below this point were added in #65742,
|
||||||
// and subsequently disabled (with the non-early gating readded).
|
// and subsequently disabled (with the non-early gating readded).
|
||||||
|
|
|
@ -2105,7 +2105,7 @@ impl<'a> Parser<'a> {
|
||||||
ClosureBinder::NotPresent
|
ClosureBinder::NotPresent
|
||||||
};
|
};
|
||||||
|
|
||||||
let constness = self.parse_closure_constness(Case::Sensitive);
|
let constness = self.parse_closure_constness();
|
||||||
|
|
||||||
let movability =
|
let movability =
|
||||||
if self.eat_keyword(kw::Static) { Movability::Static } else { Movability::Movable };
|
if self.eat_keyword(kw::Static) { Movability::Static } else { Movability::Movable };
|
||||||
|
|
|
@ -1196,9 +1196,13 @@ impl<'a> Parser<'a> {
|
||||||
self.parse_constness_(case, false)
|
self.parse_constness_(case, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Parses constness for closures
|
/// Parses constness for closures (case sensitive, feature-gated)
|
||||||
fn parse_closure_constness(&mut self, case: Case) -> Const {
|
fn parse_closure_constness(&mut self) -> Const {
|
||||||
self.parse_constness_(case, true)
|
let constness = self.parse_constness_(Case::Sensitive, true);
|
||||||
|
if let Const::Yes(span) = constness {
|
||||||
|
self.sess.gated_spans.gate(sym::const_closures, span);
|
||||||
|
}
|
||||||
|
constness
|
||||||
}
|
}
|
||||||
|
|
||||||
fn parse_constness_(&mut self, case: Case, is_closure: bool) -> Const {
|
fn parse_constness_(&mut self, case: Case, is_closure: bool) -> Const {
|
||||||
|
|
|
@ -624,10 +624,12 @@ impl<'a> Parser<'a> {
|
||||||
///
|
///
|
||||||
/// Note that this does *not* parse bare trait objects.
|
/// Note that this does *not* parse bare trait objects.
|
||||||
fn parse_dyn_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
|
fn parse_dyn_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
|
||||||
|
let lo = self.token.span;
|
||||||
self.bump(); // `dyn`
|
self.bump(); // `dyn`
|
||||||
|
|
||||||
// parse dyn* types
|
// parse dyn* types
|
||||||
let syntax = if self.eat(&TokenKind::BinOp(token::Star)) {
|
let syntax = if self.eat(&TokenKind::BinOp(token::Star)) {
|
||||||
|
self.sess.gated_spans.gate(sym::dyn_star, lo.to(self.prev_token.span));
|
||||||
TraitObjectSyntax::DynStar
|
TraitObjectSyntax::DynStar
|
||||||
} else {
|
} else {
|
||||||
TraitObjectSyntax::Dyn
|
TraitObjectSyntax::Dyn
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
/// dyn* is not necessarily the final surface syntax (if we have one at all),
|
/// dyn* is not necessarily the final surface syntax (if we have one at all),
|
||||||
/// but for now we will support it to aid in writing tests independently.
|
/// but for now we will support it to aid in writing tests independently.
|
||||||
pub fn dyn_star_parameter(_: &dyn* Send) {
|
pub fn dyn_star_parameter(_: &dyn* Send) {
|
||||||
//~^ dyn* trait objects are unstable
|
//~^ `dyn*` trait objects are experimental
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {}
|
fn main() {}
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
error[E0658]: dyn* trait objects are unstable
|
error[E0658]: `dyn*` trait objects are experimental
|
||||||
--> $DIR/feature-gate-dyn_star.rs:5:31
|
--> $DIR/feature-gate-dyn_star.rs:5:31
|
||||||
|
|
|
|
||||||
LL | pub fn dyn_star_parameter(_: &dyn* Send) {
|
LL | pub fn dyn_star_parameter(_: &dyn* Send) {
|
||||||
| ^^^^^^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
||||||
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
||||||
|
|
8
tests/ui/dyn-star/gated-span.rs
Normal file
8
tests/ui/dyn-star/gated-span.rs
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
macro_rules! t {
|
||||||
|
($t:ty) => {}
|
||||||
|
}
|
||||||
|
|
||||||
|
t!(dyn* Send);
|
||||||
|
//~^ ERROR `dyn*` trait objects are experimental
|
||||||
|
|
||||||
|
fn main() {}
|
12
tests/ui/dyn-star/gated-span.stderr
Normal file
12
tests/ui/dyn-star/gated-span.stderr
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
error[E0658]: `dyn*` trait objects are experimental
|
||||||
|
--> $DIR/gated-span.rs:5:4
|
||||||
|
|
|
||||||
|
LL | t!(dyn* Send);
|
||||||
|
| ^^^^
|
||||||
|
|
|
||||||
|
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
||||||
|
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
||||||
|
|
||||||
|
error: aborting due to previous error
|
||||||
|
|
||||||
|
For more information about this error, try `rustc --explain E0658`.
|
|
@ -4,8 +4,8 @@ fn make_dyn_star() {
|
||||||
let i = 42usize;
|
let i = 42usize;
|
||||||
let dyn_i: dyn* Debug = i as dyn* Debug;
|
let dyn_i: dyn* Debug = i as dyn* Debug;
|
||||||
//~^ ERROR casting `usize` as `dyn* Debug` is invalid
|
//~^ ERROR casting `usize` as `dyn* Debug` is invalid
|
||||||
//~| ERROR dyn* trait objects are unstable
|
//~| ERROR `dyn*` trait objects are experimental
|
||||||
//~| ERROR dyn* trait objects are unstable
|
//~| ERROR `dyn*` trait objects are experimental
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|
|
@ -1,17 +1,17 @@
|
||||||
error[E0658]: dyn* trait objects are unstable
|
error[E0658]: `dyn*` trait objects are experimental
|
||||||
--> $DIR/no-explicit-dyn-star-cast.rs:5:16
|
--> $DIR/no-explicit-dyn-star-cast.rs:5:16
|
||||||
|
|
|
|
||||||
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
|
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
|
||||||
| ^^^^^^^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
||||||
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
||||||
|
|
||||||
error[E0658]: dyn* trait objects are unstable
|
error[E0658]: `dyn*` trait objects are experimental
|
||||||
--> $DIR/no-explicit-dyn-star-cast.rs:5:34
|
--> $DIR/no-explicit-dyn-star-cast.rs:5:34
|
||||||
|
|
|
|
||||||
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
|
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
|
||||||
| ^^^^^^^^^^
|
| ^^^^
|
||||||
|
|
|
|
||||||
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
|
||||||
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
||||||
|
|
|
@ -1,5 +1,13 @@
|
||||||
// gate-test-const_closures
|
// gate-test-const_closures
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
(const || {})();
|
(const || {})();
|
||||||
//~^ ERROR: const closures are experimental
|
//~^ ERROR: const closures are experimental
|
||||||
}
|
}
|
||||||
|
|
||||||
|
macro_rules! e {
|
||||||
|
($e:expr) => {}
|
||||||
|
}
|
||||||
|
|
||||||
|
e!((const || {}));
|
||||||
|
//~^ ERROR const closures are experimental
|
||||||
|
|
|
@ -1,12 +1,21 @@
|
||||||
error[E0658]: const closures are experimental
|
error[E0658]: const closures are experimental
|
||||||
--> $DIR/gate.rs:3:6
|
--> $DIR/gate.rs:4:6
|
||||||
|
|
|
|
||||||
LL | (const || {})();
|
LL | (const || {})();
|
||||||
| ^^^^^^^^^^^
|
| ^^^^^
|
||||||
|
|
|
|
||||||
= note: see issue #106003 <https://github.com/rust-lang/rust/issues/106003> for more information
|
= note: see issue #106003 <https://github.com/rust-lang/rust/issues/106003> for more information
|
||||||
= help: add `#![feature(const_closures)]` to the crate attributes to enable
|
= help: add `#![feature(const_closures)]` to the crate attributes to enable
|
||||||
|
|
||||||
error: aborting due to previous error
|
error[E0658]: const closures are experimental
|
||||||
|
--> $DIR/gate.rs:12:5
|
||||||
|
|
|
||||||
|
LL | e!((const || {}));
|
||||||
|
| ^^^^^
|
||||||
|
|
|
||||||
|
= note: see issue #106003 <https://github.com/rust-lang/rust/issues/106003> for more information
|
||||||
|
= help: add `#![feature(const_closures)]` to the crate attributes to enable
|
||||||
|
|
||||||
|
error: aborting due to 2 previous errors
|
||||||
|
|
||||||
For more information about this error, try `rustc --explain E0658`.
|
For more information about this error, try `rustc --explain E0658`.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue