Skip to content

Commit 2c0311d

Browse files
authored
Rollup merge of #126837 - petrochenkov:delegfix, r=compiler-errors
delegation: Do not crash on qpaths without a trait Fixes #126742
2 parents a9959bd + 0a26595 commit 2c0311d

File tree

5 files changed

+45
-2
lines changed

5 files changed

+45
-2
lines changed

compiler/rustc_expand/messages.ftl

+3
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,9 @@ expand_feature_removed =
6161
expand_glob_delegation_outside_impls =
6262
glob delegation is only supported in impls
6363
64+
expand_glob_delegation_traitless_qpath =
65+
qualified path without a trait in glob delegation
66+
6467
expand_helper_attribute_name_invalid =
6568
`{$name}` cannot be a name of derive helper attribute
6669

compiler/rustc_expand/src/errors.rs

+7
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,13 @@ pub(crate) struct GlobDelegationOutsideImpls {
449449
pub span: Span,
450450
}
451451

452+
#[derive(Diagnostic)]
453+
#[diag(expand_glob_delegation_traitless_qpath)]
454+
pub(crate) struct GlobDelegationTraitlessQpath {
455+
#[primary_span]
456+
pub span: Span,
457+
}
458+
452459
// This used to be the `proc_macro_back_compat` lint (#83125). It was later
453460
// turned into a hard error.
454461
#[derive(Diagnostic)]

compiler/rustc_expand/src/expand.rs

+10-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
use crate::base::*;
22
use crate::config::StripUnconfigured;
33
use crate::errors::{
4-
EmptyDelegationMac, GlobDelegationOutsideImpls, IncompleteParse, RecursionLimitReached,
5-
RemoveExprNotSupported, RemoveNodeNotSupported, UnsupportedKeyValue, WrongFragmentKind,
4+
EmptyDelegationMac, GlobDelegationOutsideImpls, GlobDelegationTraitlessQpath, IncompleteParse,
5+
RecursionLimitReached, RemoveExprNotSupported, RemoveNodeNotSupported, UnsupportedKeyValue,
6+
WrongFragmentKind,
67
};
78
use crate::mbe::diagnostics::annotate_err_with_kind;
89
use crate::module::{mod_dir_path, parse_external_mod, DirOwnership, ParsedExternalMod};
@@ -1989,6 +1990,8 @@ impl<'a, 'b> InvocationCollector<'a, 'b> {
19891990
}
19901991
None if let Some((deleg, item)) = node.delegation() => {
19911992
let Some(suffixes) = &deleg.suffixes else {
1993+
let traitless_qself =
1994+
matches!(&deleg.qself, Some(qself) if qself.position == 0);
19921995
let item = match node.to_annotatable() {
19931996
Annotatable::ImplItem(item) => item,
19941997
ann @ (Annotatable::Item(_)
@@ -2000,6 +2003,11 @@ impl<'a, 'b> InvocationCollector<'a, 'b> {
20002003
}
20012004
_ => unreachable!(),
20022005
};
2006+
if traitless_qself {
2007+
let span = item.span;
2008+
self.cx.dcx().emit_err(GlobDelegationTraitlessQpath { span });
2009+
return Default::default();
2010+
}
20032011
return self.collect_glob_delegation(item, Node::KIND).make_ast::<Node>();
20042012
};
20052013

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#![feature(fn_delegation)]
2+
#![allow(incomplete_features)]
3+
4+
struct S;
5+
6+
impl S {
7+
reuse <u8>::*; //~ ERROR qualified path without a trait in glob delegation
8+
reuse <()>::*; //~ ERROR qualified path without a trait in glob delegation
9+
}
10+
11+
fn main() {}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
error: qualified path without a trait in glob delegation
2+
--> $DIR/glob-traitless-qpath.rs:7:5
3+
|
4+
LL | reuse <u8>::*;
5+
| ^^^^^^^^^^^^^^
6+
7+
error: qualified path without a trait in glob delegation
8+
--> $DIR/glob-traitless-qpath.rs:8:5
9+
|
10+
LL | reuse <()>::*;
11+
| ^^^^^^^^^^^^^^
12+
13+
error: aborting due to 2 previous errors
14+

0 commit comments

Comments
 (0)