Skip to content

Commit bd43555

Browse files
Gate all usages of dyn*, even in macros
1 parent 8a73f50 commit bd43555

File tree

8 files changed

+32
-12
lines changed

8 files changed

+32
-12
lines changed

compiler/rustc_ast_passes/src/feature_gate.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -337,9 +337,6 @@ impl<'a> Visitor<'a> for PostExpansionVisitor<'a> {
337337
ast::TyKind::Never => {
338338
gate_feature_post!(&self, never_type, ty.span, "the `!` type is experimental");
339339
}
340-
ast::TyKind::TraitObject(_, ast::TraitObjectSyntax::DynStar, ..) => {
341-
gate_feature_post!(&self, dyn_star, ty.span, "dyn* trait objects are unstable");
342-
}
343340
_ => {}
344341
}
345342
visit::walk_ty(self, ty)
@@ -594,6 +591,7 @@ pub fn check_crate(krate: &ast::Crate, sess: &Session) {
594591
gate_all!(inline_const_pat, "inline-const in pattern position is experimental");
595592
gate_all!(associated_const_equality, "associated const equality is incomplete");
596593
gate_all!(yeet_expr, "`do yeet` expression is experimental");
594+
gate_all!(dyn_star, "`dyn*` trait objects are experimental");
597595

598596
// All uses of `gate_all!` below this point were added in #65742,
599597
// and subsequently disabled (with the non-early gating readded).

compiler/rustc_parse/src/parser/ty.rs

+2
Original file line numberDiff line numberDiff line change
@@ -624,10 +624,12 @@ impl<'a> Parser<'a> {
624624
///
625625
/// Note that this does *not* parse bare trait objects.
626626
fn parse_dyn_ty(&mut self, impl_dyn_multi: &mut bool) -> PResult<'a, TyKind> {
627+
let lo = self.token.span;
627628
self.bump(); // `dyn`
628629

629630
// parse dyn* types
630631
let syntax = if self.eat(&TokenKind::BinOp(token::Star)) {
632+
self.sess.gated_spans.gate(sym::dyn_star, lo.to(self.prev_token.span));
631633
TraitObjectSyntax::DynStar
632634
} else {
633635
TraitObjectSyntax::Dyn

tests/ui/dyn-star/feature-gate-dyn_star.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/// dyn* is not necessarily the final surface syntax (if we have one at all),
44
/// but for now we will support it to aid in writing tests independently.
55
pub fn dyn_star_parameter(_: &dyn* Send) {
6-
//~^ dyn* trait objects are unstable
6+
//~^ `dyn*` trait objects are experimental
77
}
88

99
fn main() {}

tests/ui/dyn-star/feature-gate-dyn_star.stderr

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
error[E0658]: dyn* trait objects are unstable
1+
error[E0658]: `dyn*` trait objects are experimental
22
--> $DIR/feature-gate-dyn_star.rs:5:31
33
|
44
LL | pub fn dyn_star_parameter(_: &dyn* Send) {
5-
| ^^^^^^^^^
5+
| ^^^^
66
|
77
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
88
= help: add `#![feature(dyn_star)]` to the crate attributes to enable

tests/ui/dyn-star/gated-span.rs

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
macro_rules! t {
2+
($t:ty) => {}
3+
}
4+
5+
t!(dyn* Send);
6+
//~^ ERROR `dyn*` trait objects are experimental
7+
8+
fn main() {}

tests/ui/dyn-star/gated-span.stderr

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
error[E0658]: `dyn*` trait objects are experimental
2+
--> $DIR/gated-span.rs:5:4
3+
|
4+
LL | t!(dyn* Send);
5+
| ^^^^
6+
|
7+
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
8+
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
9+
10+
error: aborting due to previous error
11+
12+
For more information about this error, try `rustc --explain E0658`.

tests/ui/dyn-star/no-explicit-dyn-star-cast.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ fn make_dyn_star() {
44
let i = 42usize;
55
let dyn_i: dyn* Debug = i as dyn* Debug;
66
//~^ ERROR casting `usize` as `dyn* Debug` is invalid
7-
//~| ERROR dyn* trait objects are unstable
8-
//~| ERROR dyn* trait objects are unstable
7+
//~| ERROR `dyn*` trait objects are experimental
8+
//~| ERROR `dyn*` trait objects are experimental
99
}
1010

1111
fn main() {

tests/ui/dyn-star/no-explicit-dyn-star-cast.stderr

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
1-
error[E0658]: dyn* trait objects are unstable
1+
error[E0658]: `dyn*` trait objects are experimental
22
--> $DIR/no-explicit-dyn-star-cast.rs:5:16
33
|
44
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
5-
| ^^^^^^^^^^
5+
| ^^^^
66
|
77
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
88
= help: add `#![feature(dyn_star)]` to the crate attributes to enable
99

10-
error[E0658]: dyn* trait objects are unstable
10+
error[E0658]: `dyn*` trait objects are experimental
1111
--> $DIR/no-explicit-dyn-star-cast.rs:5:34
1212
|
1313
LL | let dyn_i: dyn* Debug = i as dyn* Debug;
14-
| ^^^^^^^^^^
14+
| ^^^^
1515
|
1616
= note: see issue #102425 <https://github.com/rust-lang/rust/issues/102425> for more information
1717
= help: add `#![feature(dyn_star)]` to the crate attributes to enable

0 commit comments

Comments
 (0)