mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
Gate all usages of dyn*, even in macros
This commit is contained in:
parent
8a73f50d87
commit
bd4355500a
8 changed files with 32 additions and 12 deletions
|
@ -337,9 +337,6 @@ fn visit_ty(&mut self, ty: &'a ast::Ty) {
|
|||
ast::TyKind::Never => {
|
||||
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)
|
||||
|
@ -594,6 +591,7 @@ macro_rules! gate_all {
|
|||
gate_all!(inline_const_pat, "inline-const in pattern position is experimental");
|
||||
gate_all!(associated_const_equality, "associated const equality is incomplete");
|
||||
gate_all!(yeet_expr, "`do yeet` expression is experimental");
|
||||
gate_all!(dyn_star, "`dyn*` trait objects are experimental");
|
||||
|
||||
// All uses of `gate_all!` below this point were added in #65742,
|
||||
// and subsequently disabled (with the non-early gating readded).
|
||||
|
|
|
@ -624,10 +624,12 @@ fn is_explicit_dyn_type(&mut self) -> bool {
|
|||
///
|
||||
/// Note that this does *not* parse bare trait objects.
|
||||
fn parse_dyn_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
|
||||
let lo = self.token.span;
|
||||
self.bump(); // `dyn`
|
||||
|
||||
// parse dyn* types
|
||||
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
|
||||
} else {
|
||||
TraitObjectSyntax::Dyn
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
/// 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.
|
||||
pub fn dyn_star_parameter(_: &dyn* Send) {
|
||||
//~^ dyn* trait objects are unstable
|
||||
//~^ `dyn*` trait objects are experimental
|
||||
}
|
||||
|
||||
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
|
||||
|
|
||||
LL | pub fn dyn_star_parameter(_: &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
|
||||
|
|
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 dyn_i: dyn* Debug = i as dyn* Debug;
|
||||
//~^ ERROR casting `usize` as `dyn* Debug` is invalid
|
||||
//~| ERROR dyn* trait objects are unstable
|
||||
//~| ERROR dyn* trait objects are unstable
|
||||
//~| ERROR `dyn*` trait objects are experimental
|
||||
//~| ERROR `dyn*` trait objects are experimental
|
||||
}
|
||||
|
||||
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
|
||||
|
|
||||
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
|
||||
= 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
|
||||
|
|
||||
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
|
||||
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
|
||||
|
|
Loading…
Reference in a new issue