1
1
use crate :: base:: * ;
2
2
use crate :: config:: StripUnconfigured ;
3
3
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 ,
6
7
} ;
7
8
use crate :: mbe:: diagnostics:: annotate_err_with_kind;
8
9
use crate :: module:: { mod_dir_path, parse_external_mod, DirOwnership , ParsedExternalMod } ;
@@ -1989,6 +1990,8 @@ impl<'a, 'b> InvocationCollector<'a, 'b> {
1989
1990
}
1990
1991
None if let Some ( ( deleg, item) ) = node. delegation ( ) => {
1991
1992
let Some ( suffixes) = & deleg. suffixes else {
1993
+ let traitless_qself =
1994
+ matches ! ( & deleg. qself, Some ( qself) if qself. position == 0 ) ;
1992
1995
let item = match node. to_annotatable ( ) {
1993
1996
Annotatable :: ImplItem ( item) => item,
1994
1997
ann @ ( Annotatable :: Item ( _)
@@ -2000,6 +2003,11 @@ impl<'a, 'b> InvocationCollector<'a, 'b> {
2000
2003
}
2001
2004
_ => unreachable ! ( ) ,
2002
2005
} ;
2006
+ if traitless_qself {
2007
+ let span = item. span ;
2008
+ self . cx . dcx ( ) . emit_err ( GlobDelegationTraitlessQpath { span } ) ;
2009
+ return Default :: default ( ) ;
2010
+ }
2003
2011
return self . collect_glob_delegation ( item, Node :: KIND ) . make_ast :: < Node > ( ) ;
2004
2012
} ;
2005
2013
0 commit comments