1use std::mem;
20use std::ops::{Deref, DerefMut};
21use std::str::FromStr;
22
23use itertools::{Either, Itertools};
24use rustc_abi::{CVariadicStatus, CanonAbi, ExternAbi, InterruptKind};
25use rustc_ast::visit::{AssocCtxt, BoundKind, FnCtxt, FnKind, Visitor, walk_list};
26use rustc_ast::*;
27use rustc_ast_pretty::pprust::{self, State};
28use rustc_attr_parsing::validate_attr;
29use rustc_data_structures::fx::FxIndexMap;
30use rustc_errors::{DiagCtxtHandle, Diagnostic, LintBuffer};
31use rustc_feature::Features;
32use rustc_session::Session;
33use rustc_session::errors::feature_err;
34use rustc_session::lint::builtin::{
35 DEPRECATED_WHERE_CLAUSE_LOCATION, MISSING_ABI, MISSING_UNSAFE_ON_EXTERN,
36 PATTERNS_IN_FNS_WITHOUT_BODY, UNUSED_VISIBILITIES,
37};
38use rustc_span::{Ident, Span, kw, sym};
39use rustc_target::spec::{AbiMap, AbiMapping};
40use thin_vec::thin_vec;
41
42use crate::errors::{self, TildeConstReason};
43
44enum SelfSemantic {
46 Yes,
47 No,
48}
49
50enum TraitOrImpl {
51 Trait { vis: Span, constness: Const },
52 TraitImpl { constness: Const, polarity: ImplPolarity, trait_ref_span: Span },
53 Impl { constness: Const },
54}
55
56impl TraitOrImpl {
57 fn constness(&self) -> Option<Span> {
58 match self {
59 Self::Trait { constness: Const::Yes(span), .. }
60 | Self::Impl { constness: Const::Yes(span), .. }
61 | Self::TraitImpl { constness: Const::Yes(span), .. } => Some(*span),
62 _ => None,
63 }
64 }
65}
66
67enum AllowDefault {
68 Yes,
69 No,
70}
71
72impl AllowDefault {
73 fn when(b: bool) -> Self {
74 if b { Self::Yes } else { Self::No }
75 }
76}
77
78enum AllowFinal {
79 Yes,
80 No,
81}
82
83impl AllowFinal {
84 fn when(b: bool) -> Self {
85 if b { Self::Yes } else { Self::No }
86 }
87}
88
89struct AstValidator<'a> {
90 sess: &'a Session,
91 features: &'a Features,
92
93 extern_mod_span: Option<Span>,
95
96 outer_trait_or_trait_impl: Option<TraitOrImpl>,
97
98 has_proc_macro_decls: bool,
99
100 outer_impl_trait_span: Option<Span>,
104
105 disallow_tilde_const: Option<TildeConstReason>,
106
107 extern_mod_safety: Option<Safety>,
109 extern_mod_abi: Option<ExternAbi>,
110
111 lint_node_id: NodeId,
112
113 is_sdylib_interface: bool,
114
115 lint_buffer: &'a mut LintBuffer,
116}
117
118impl<'a> AstValidator<'a> {
119 fn with_in_trait_or_impl(
120 &mut self,
121 in_trait_or_impl: Option<TraitOrImpl>,
122 f: impl FnOnce(&mut Self),
123 ) {
124 let old = mem::replace(&mut self.outer_trait_or_trait_impl, in_trait_or_impl);
125 f(self);
126 self.outer_trait_or_trait_impl = old;
127 }
128
129 fn with_in_trait(&mut self, vis: Span, constness: Const, f: impl FnOnce(&mut Self)) {
130 let old = mem::replace(
131 &mut self.outer_trait_or_trait_impl,
132 Some(TraitOrImpl::Trait { vis, constness }),
133 );
134 f(self);
135 self.outer_trait_or_trait_impl = old;
136 }
137
138 fn with_in_extern_mod(
139 &mut self,
140 extern_mod_safety: Safety,
141 abi: Option<ExternAbi>,
142 f: impl FnOnce(&mut Self),
143 ) {
144 let old_safety = mem::replace(&mut self.extern_mod_safety, Some(extern_mod_safety));
145 let old_abi = mem::replace(&mut self.extern_mod_abi, abi);
146 f(self);
147 self.extern_mod_safety = old_safety;
148 self.extern_mod_abi = old_abi;
149 }
150
151 fn with_tilde_const(
152 &mut self,
153 disallowed: Option<TildeConstReason>,
154 f: impl FnOnce(&mut Self),
155 ) {
156 let old = mem::replace(&mut self.disallow_tilde_const, disallowed);
157 f(self);
158 self.disallow_tilde_const = old;
159 }
160
161 fn check_type_alias_where_clause_location(
162 &mut self,
163 ty_alias: &TyAlias,
164 ) -> Result<(), errors::WhereClauseBeforeTypeAlias> {
165 if ty_alias.ty.is_none() || !ty_alias.generics.where_clause.has_where_token {
166 return Ok(());
167 }
168
169 let span = ty_alias.generics.where_clause.span;
170
171 let sugg = if !ty_alias.generics.where_clause.predicates.is_empty()
172 || !ty_alias.after_where_clause.has_where_token
173 {
174 let mut state = State::new();
175
176 let mut needs_comma = !ty_alias.after_where_clause.predicates.is_empty();
177 if !ty_alias.after_where_clause.has_where_token {
178 state.space();
179 state.word_space("where");
180 } else if !needs_comma {
181 state.space();
182 }
183
184 for p in &ty_alias.generics.where_clause.predicates {
185 if needs_comma {
186 state.word_space(",");
187 }
188 needs_comma = true;
189 state.print_where_predicate(p);
190 }
191
192 errors::WhereClauseBeforeTypeAliasSugg::Move {
193 left: span,
194 snippet: state.s.eof(),
195 right: ty_alias.after_where_clause.span.shrink_to_hi(),
196 }
197 } else {
198 errors::WhereClauseBeforeTypeAliasSugg::Remove { span }
199 };
200
201 Err(errors::WhereClauseBeforeTypeAlias { span, sugg })
202 }
203
204 fn with_impl_trait(&mut self, outer_span: Option<Span>, f: impl FnOnce(&mut Self)) {
205 let old = mem::replace(&mut self.outer_impl_trait_span, outer_span);
206 f(self);
207 self.outer_impl_trait_span = old;
208 }
209
210 fn walk_ty(&mut self, t: &Ty) {
212 match &t.kind {
213 TyKind::ImplTrait(_, bounds) => {
214 self.with_impl_trait(Some(t.span), |this| visit::walk_ty(this, t));
215
216 let mut use_bounds = bounds
220 .iter()
221 .filter_map(|bound| match bound {
222 GenericBound::Use(_, span) => Some(span),
223 _ => None,
224 })
225 .copied();
226 if let Some(bound1) = use_bounds.next()
227 && let Some(bound2) = use_bounds.next()
228 {
229 self.dcx().emit_err(errors::DuplicatePreciseCapturing { bound1, bound2 });
230 }
231 }
232 TyKind::TraitObject(..) => self
233 .with_tilde_const(Some(TildeConstReason::TraitObject), |this| {
234 visit::walk_ty(this, t)
235 }),
236 _ => visit::walk_ty(self, t),
237 }
238 }
239
240 fn dcx(&self) -> DiagCtxtHandle<'a> {
241 self.sess.dcx()
242 }
243
244 fn visibility_not_permitted(&self, vis: &Visibility, note: errors::VisibilityNotPermittedNote) {
245 if let VisibilityKind::Inherited = vis.kind {
246 return;
247 }
248
249 self.dcx().emit_err(errors::VisibilityNotPermitted {
250 span: vis.span,
251 note,
252 remove_qualifier_sugg: vis.span,
253 });
254 }
255
256 fn check_decl_no_pat(decl: &FnDecl, mut report_err: impl FnMut(Span, Option<Ident>, bool)) {
257 for Param { pat, .. } in &decl.inputs {
258 match pat.kind {
259 PatKind::Missing | PatKind::Ident(BindingMode::NONE, _, None) | PatKind::Wild => {}
260 PatKind::Ident(BindingMode::MUT, ident, None) => {
261 report_err(pat.span, Some(ident), true)
262 }
263 _ => report_err(pat.span, None, false),
264 }
265 }
266 }
267
268 fn check_impl_fn_not_const(&self, constness: Const, parent_constness: Const) {
269 let Const::Yes(span) = constness else {
270 return;
271 };
272
273 let span = self.sess.source_map().span_extend_while_whitespace(span);
274
275 let Const::Yes(parent_constness) = parent_constness else {
276 return;
277 };
278
279 self.dcx().emit_err(errors::ImplFnConst { span, parent_constness });
280 }
281
282 fn check_trait_fn_not_const(&self, constness: Const, parent: &TraitOrImpl) {
283 let Const::Yes(span) = constness else {
284 return;
285 };
286
287 let const_trait_impl = self.features.const_trait_impl();
288 let make_impl_const_sugg = if const_trait_impl
289 && let TraitOrImpl::TraitImpl {
290 constness: Const::No,
291 polarity: ImplPolarity::Positive,
292 trait_ref_span,
293 ..
294 } = parent
295 {
296 Some(trait_ref_span.shrink_to_lo())
297 } else {
298 None
299 };
300
301 let map = self.sess.source_map();
302
303 let make_trait_const_sugg = if const_trait_impl
304 && let &TraitOrImpl::Trait { vis, constness: ast::Const::No } = parent
305 {
306 Some(map.span_extend_while_whitespace(vis).shrink_to_hi())
307 } else {
308 None
309 };
310
311 let parent_constness = parent.constness();
312 self.dcx().emit_err(errors::TraitFnConst {
313 span,
314 in_impl: #[allow(non_exhaustive_omitted_patterns)] match parent {
TraitOrImpl::TraitImpl { .. } => true,
_ => false,
}matches!(parent, TraitOrImpl::TraitImpl { .. }),
315 const_context_label: parent_constness,
316 remove_const_sugg: (
317 map.span_extend_while_whitespace(span),
318 match parent_constness {
319 Some(_) => rustc_errors::Applicability::MachineApplicable,
320 None => rustc_errors::Applicability::MaybeIncorrect,
321 },
322 ),
323 requires_multiple_changes: make_impl_const_sugg.is_some()
324 || make_trait_const_sugg.is_some(),
325 make_impl_const_sugg,
326 make_trait_const_sugg,
327 });
328 }
329
330 fn check_async_fn_in_const_trait_or_impl(&self, sig: &FnSig, parent: &TraitOrImpl) {
331 let Some(const_keyword) = parent.constness() else { return };
332
333 let Some(CoroutineKind::Async { span: async_keyword, .. }) = sig.header.coroutine_kind
334 else {
335 return;
336 };
337
338 let context = match parent {
339 TraitOrImpl::Trait { .. } => "trait",
340 TraitOrImpl::TraitImpl { .. } => "trait_impl",
341 TraitOrImpl::Impl { .. } => "impl",
342 };
343
344 self.dcx().emit_err(errors::AsyncFnInConstTraitOrTraitImpl {
345 async_keyword,
346 context,
347 const_keyword,
348 });
349 }
350
351 fn check_fn_decl(&self, fn_decl: &FnDecl, self_semantic: SelfSemantic) {
352 self.check_decl_num_args(fn_decl);
353 self.check_decl_cvariadic_pos(fn_decl);
354 self.check_decl_attrs(fn_decl);
355 self.check_decl_self_param(fn_decl, self_semantic);
356 }
357
358 fn check_decl_num_args(&self, fn_decl: &FnDecl) {
361 let max_num_args: usize = u16::MAX.into();
362 if fn_decl.inputs.len() > max_num_args {
363 let Param { span, .. } = fn_decl.inputs[0];
364 self.dcx().emit_fatal(errors::FnParamTooMany { span, max_num_args });
365 }
366 }
367
368 fn check_decl_cvariadic_pos(&self, fn_decl: &FnDecl) {
372 match &*fn_decl.inputs {
373 [ps @ .., _] => {
374 for Param { ty, span, .. } in ps {
375 if let TyKind::CVarArgs = ty.kind {
376 self.dcx().emit_err(errors::FnParamCVarArgsNotLast { span: *span });
377 }
378 }
379 }
380 _ => {}
381 }
382 }
383
384 fn check_decl_attrs(&self, fn_decl: &FnDecl) {
385 fn_decl
386 .inputs
387 .iter()
388 .flat_map(|i| i.attrs.as_ref())
389 .filter(|attr| {
390 let arr = [
391 sym::allow,
392 sym::cfg_trace,
393 sym::cfg_attr_trace,
394 sym::deny,
395 sym::expect,
396 sym::forbid,
397 sym::warn,
398 ];
399 !attr.has_any_name(&arr) && rustc_attr_parsing::is_builtin_attr(*attr)
400 })
401 .for_each(|attr| {
402 if attr.is_doc_comment() {
403 self.dcx().emit_err(errors::FnParamDocComment { span: attr.span });
404 } else {
405 self.dcx().emit_err(errors::FnParamForbiddenAttr { span: attr.span });
406 }
407 });
408 }
409
410 fn check_decl_self_param(&self, fn_decl: &FnDecl, self_semantic: SelfSemantic) {
411 if let (SelfSemantic::No, [param, ..]) = (self_semantic, &*fn_decl.inputs) {
412 if param.is_self() {
413 self.dcx().emit_err(errors::FnParamForbiddenSelf { span: param.span });
414 }
415 }
416 }
417
418 fn check_extern_fn_signature(&self, abi: ExternAbi, ctxt: FnCtxt, ident: &Ident, sig: &FnSig) {
420 match AbiMap::from_target(&self.sess.target).canonize_abi(abi, false) {
421 AbiMapping::Direct(canon_abi) | AbiMapping::Deprecated(canon_abi) => {
422 match canon_abi {
423 CanonAbi::C
424 | CanonAbi::Rust
425 | CanonAbi::RustCold
426 | CanonAbi::RustPreserveNone
427 | CanonAbi::Arm(_)
428 | CanonAbi::X86(_) => { }
429
430 CanonAbi::GpuKernel => {
431 self.reject_coroutine(abi, sig);
433
434 self.reject_return(abi, sig);
436 }
437
438 CanonAbi::Custom => {
439 self.reject_safe_fn(abi, ctxt, sig);
441
442 self.reject_coroutine(abi, sig);
444
445 self.reject_params_or_return(abi, ident, sig);
447 }
448
449 CanonAbi::Interrupt(interrupt_kind) => {
450 self.reject_coroutine(abi, sig);
452
453 if let InterruptKind::X86 = interrupt_kind {
454 let inputs = &sig.decl.inputs;
457 let param_count = inputs.len();
458 if !#[allow(non_exhaustive_omitted_patterns)] match param_count {
1 | 2 => true,
_ => false,
}matches!(param_count, 1 | 2) {
459 let mut spans: Vec<Span> =
460 inputs.iter().map(|arg| arg.span).collect();
461 if spans.is_empty() {
462 spans = ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[sig.span]))vec![sig.span];
463 }
464 self.dcx().emit_err(errors::AbiX86Interrupt { spans, param_count });
465 }
466
467 self.reject_return(abi, sig);
468 } else {
469 self.reject_params_or_return(abi, ident, sig);
471 }
472 }
473 }
474 }
475 AbiMapping::Invalid => { }
476 }
477 }
478
479 fn reject_safe_fn(&self, abi: ExternAbi, ctxt: FnCtxt, sig: &FnSig) {
480 let dcx = self.dcx();
481
482 match sig.header.safety {
483 Safety::Unsafe(_) => { }
484 Safety::Safe(safe_span) => {
485 let source_map = self.sess.psess.source_map();
486 let safe_span = source_map.span_until_non_whitespace(safe_span.to(sig.span));
487 dcx.emit_err(errors::AbiCustomSafeForeignFunction { span: sig.span, safe_span });
488 }
489 Safety::Default => match ctxt {
490 FnCtxt::Foreign => { }
491 FnCtxt::Free | FnCtxt::Assoc(_) => {
492 dcx.emit_err(errors::AbiCustomSafeFunction {
493 span: sig.span,
494 abi,
495 unsafe_span: sig.span.shrink_to_lo(),
496 });
497 }
498 },
499 }
500 }
501
502 fn reject_coroutine(&self, abi: ExternAbi, sig: &FnSig) {
503 if let Some(coroutine_kind) = sig.header.coroutine_kind {
504 let coroutine_kind_span = self
505 .sess
506 .psess
507 .source_map()
508 .span_until_non_whitespace(coroutine_kind.span().to(sig.span));
509
510 self.dcx().emit_err(errors::AbiCannotBeCoroutine {
511 span: sig.span,
512 abi,
513 coroutine_kind_span,
514 coroutine_kind_str: coroutine_kind.as_str(),
515 });
516 }
517 }
518
519 fn reject_return(&self, abi: ExternAbi, sig: &FnSig) {
520 if let FnRetTy::Ty(ref ret_ty) = sig.decl.output
521 && match &ret_ty.kind {
522 TyKind::Never => false,
523 TyKind::Tup(tup) if tup.is_empty() => false,
524 _ => true,
525 }
526 {
527 self.dcx().emit_err(errors::AbiMustNotHaveReturnType { span: ret_ty.span, abi });
528 }
529 }
530
531 fn reject_params_or_return(&self, abi: ExternAbi, ident: &Ident, sig: &FnSig) {
532 let mut spans: Vec<_> = sig.decl.inputs.iter().map(|p| p.span).collect();
533 if let FnRetTy::Ty(ref ret_ty) = sig.decl.output
534 && match &ret_ty.kind {
535 TyKind::Never => false,
536 TyKind::Tup(tup) if tup.is_empty() => false,
537 _ => true,
538 }
539 {
540 spans.push(ret_ty.span);
541 }
542
543 if !spans.is_empty() {
544 let header_span = sig.header_span();
545 let suggestion_span = header_span.shrink_to_hi().to(sig.decl.output.span());
546 let padding = if header_span.is_empty() { "" } else { " " };
547
548 self.dcx().emit_err(errors::AbiMustNotHaveParametersOrReturnType {
549 spans,
550 symbol: ident.name,
551 suggestion_span,
552 padding,
553 abi,
554 });
555 }
556 }
557
558 fn check_item_safety(&self, span: Span, safety: Safety) {
564 match self.extern_mod_safety {
565 Some(extern_safety) => {
566 if #[allow(non_exhaustive_omitted_patterns)] match safety {
Safety::Unsafe(_) | Safety::Safe(_) => true,
_ => false,
}matches!(safety, Safety::Unsafe(_) | Safety::Safe(_))
567 && extern_safety == Safety::Default
568 {
569 self.dcx().emit_err(errors::InvalidSafetyOnExtern {
570 item_span: span,
571 block: Some(self.current_extern_span().shrink_to_lo()),
572 });
573 }
574 }
575 None => {
576 if #[allow(non_exhaustive_omitted_patterns)] match safety {
Safety::Safe(_) => true,
_ => false,
}matches!(safety, Safety::Safe(_)) {
577 self.dcx().emit_err(errors::InvalidSafetyOnItem { span });
578 }
579 }
580 }
581 }
582
583 fn check_fn_ptr_safety(&self, span: Span, safety: Safety) {
584 if #[allow(non_exhaustive_omitted_patterns)] match safety {
Safety::Safe(_) => true,
_ => false,
}matches!(safety, Safety::Safe(_)) {
585 self.dcx().emit_err(errors::InvalidSafetyOnFnPtr { span });
586 }
587 }
588
589 fn check_defaultness(
590 &self,
591 span: Span,
592 defaultness: Defaultness,
593 allow_default: AllowDefault,
594 allow_final: AllowFinal,
595 ) {
596 match defaultness {
597 Defaultness::Default(def_span) if #[allow(non_exhaustive_omitted_patterns)] match allow_default {
AllowDefault::No => true,
_ => false,
}matches!(allow_default, AllowDefault::No) => {
598 let span = self.sess.source_map().guess_head_span(span);
599 self.dcx().emit_err(errors::ForbiddenDefault { span, def_span });
600 }
601 Defaultness::Final(def_span) if #[allow(non_exhaustive_omitted_patterns)] match allow_final {
AllowFinal::No => true,
_ => false,
}matches!(allow_final, AllowFinal::No) => {
602 let span = self.sess.source_map().guess_head_span(span);
603 self.dcx().emit_err(errors::ForbiddenFinal { span, def_span });
604 }
605 _ => (),
606 }
607 }
608
609 fn check_final_has_body(&self, item: &Item<AssocItemKind>, defaultness: Defaultness) {
610 if let AssocItemKind::Fn(box Fn { body: None, .. }) = &item.kind
611 && let Defaultness::Final(def_span) = defaultness
612 {
613 let span = self.sess.source_map().guess_head_span(item.span);
614 self.dcx().emit_err(errors::ForbiddenFinalWithoutBody { span, def_span });
615 }
616 }
617
618 fn ending_semi_or_hi(&self, sp: Span) -> Span {
621 let source_map = self.sess.source_map();
622 let end = source_map.end_point(sp);
623
624 if source_map.span_to_snippet(end).is_ok_and(|s| s == ";") {
625 end
626 } else {
627 sp.shrink_to_hi()
628 }
629 }
630
631 fn check_type_no_bounds(&self, bounds: &[GenericBound], ctx: &str) {
632 let span = match bounds {
633 [] => return,
634 [b0] => b0.span(),
635 [b0, .., bl] => b0.span().to(bl.span()),
636 };
637 self.dcx().emit_err(errors::BoundInContext { span, ctx });
638 }
639
640 fn check_foreign_ty_genericless(&self, generics: &Generics, after_where_clause: &WhereClause) {
641 let cannot_have = |span, descr, remove_descr| {
642 self.dcx().emit_err(errors::ExternTypesCannotHave {
643 span,
644 descr,
645 remove_descr,
646 block_span: self.current_extern_span(),
647 });
648 };
649
650 if !generics.params.is_empty() {
651 cannot_have(generics.span, "generic parameters", "generic parameters");
652 }
653
654 let check_where_clause = |where_clause: &WhereClause| {
655 if where_clause.has_where_token {
656 cannot_have(where_clause.span, "`where` clauses", "`where` clause");
657 }
658 };
659
660 check_where_clause(&generics.where_clause);
661 check_where_clause(&after_where_clause);
662 }
663
664 fn check_foreign_kind_bodyless(&self, ident: Ident, kind: &str, body_span: Option<Span>) {
665 let Some(body_span) = body_span else {
666 return;
667 };
668 self.dcx().emit_err(errors::BodyInExtern {
669 span: ident.span,
670 body: body_span,
671 block: self.current_extern_span(),
672 kind,
673 });
674 }
675
676 fn check_foreign_fn_bodyless(&self, ident: Ident, body: Option<&Block>) {
678 let Some(body) = body else {
679 return;
680 };
681 self.dcx().emit_err(errors::FnBodyInExtern {
682 span: ident.span,
683 body: body.span,
684 block: self.current_extern_span(),
685 });
686 }
687
688 fn current_extern_span(&self) -> Span {
689 self.sess.source_map().guess_head_span(self.extern_mod_span.unwrap())
690 }
691
692 fn check_foreign_fn_headerless(
694 &self,
695 FnHeader { safety: _, coroutine_kind, constness, ext }: FnHeader,
697 ) {
698 let report_err = |span, kw| {
699 self.dcx().emit_err(errors::FnQualifierInExtern {
700 span,
701 kw,
702 block: self.current_extern_span(),
703 });
704 };
705 match coroutine_kind {
706 Some(kind) => report_err(kind.span(), kind.as_str()),
707 None => (),
708 }
709 match constness {
710 Const::Yes(span) => report_err(span, "const"),
711 Const::No => (),
712 }
713 match ext {
714 Extern::None => (),
715 Extern::Implicit(span) | Extern::Explicit(_, span) => report_err(span, "extern"),
716 }
717 }
718
719 fn check_foreign_item_ascii_only(&self, ident: Ident) {
721 if !ident.as_str().is_ascii() {
722 self.dcx().emit_err(errors::ExternItemAscii {
723 span: ident.span,
724 block: self.current_extern_span(),
725 });
726 }
727 }
728
729 fn check_c_variadic_type(&self, fk: FnKind<'_>, attrs: &AttrVec) {
735 let variadic_param = match fk.decl().inputs.last() {
737 Some(param) if #[allow(non_exhaustive_omitted_patterns)] match param.ty.kind {
TyKind::CVarArgs => true,
_ => false,
}matches!(param.ty.kind, TyKind::CVarArgs) => param,
738 _ => return,
739 };
740
741 let FnKind::Fn(fn_ctxt, _, Fn { sig, .. }) = fk else {
742 {
::core::panicking::panic_fmt(format_args!("internal error: entered unreachable code: {0}",
format_args!("C variable argument list cannot be used in closures")));
}unreachable!("C variable argument list cannot be used in closures")
744 };
745
746 if let Const::Yes(_) = sig.header.constness
747 && !self.features.enabled(sym::const_c_variadic)
748 {
749 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("c-variadic const function definitions are unstable"))
})format!("c-variadic const function definitions are unstable");
750 feature_err(&self.sess, sym::const_c_variadic, sig.span, msg).emit();
751 }
752
753 if let Some(coroutine_kind) = sig.header.coroutine_kind {
754 self.dcx().emit_err(errors::CoroutineAndCVariadic {
755 spans: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[coroutine_kind.span(), variadic_param.span]))vec![coroutine_kind.span(), variadic_param.span],
756 coroutine_kind: coroutine_kind.as_str(),
757 coroutine_span: coroutine_kind.span(),
758 variadic_span: variadic_param.span,
759 });
760 }
761
762 match fn_ctxt {
763 FnCtxt::Foreign => return,
764 FnCtxt::Free | FnCtxt::Assoc(_) => {
765 match self.sess.target.supports_c_variadic_definitions() {
766 CVariadicStatus::NotSupported => {
767 self.dcx().emit_err(errors::CVariadicNotSupported {
768 variadic_span: variadic_param.span,
769 target: &*self.sess.target.llvm_target,
770 });
771 return;
772 }
773 CVariadicStatus::Unstable { feature } if !self.features.enabled(feature) => {
774 let msg =
775 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("C-variadic function definitions on this target are unstable"))
})format!("C-variadic function definitions on this target are unstable");
776 feature_err(&self.sess, feature, variadic_param.span, msg).emit();
777 return;
778 }
779 CVariadicStatus::Unstable { .. } | CVariadicStatus::Stable => {
780 }
782 }
783
784 match sig.header.ext {
785 Extern::Implicit(_) => {
786 if !#[allow(non_exhaustive_omitted_patterns)] match sig.header.safety {
Safety::Unsafe(_) => true,
_ => false,
}matches!(sig.header.safety, Safety::Unsafe(_)) {
787 self.dcx().emit_err(errors::CVariadicMustBeUnsafe {
788 span: variadic_param.span,
789 unsafe_span: sig.safety_span(),
790 });
791 }
792 }
793 Extern::Explicit(StrLit { symbol_unescaped, .. }, _) => {
794 let Ok(abi) = ExternAbi::from_str(symbol_unescaped.as_str()) else {
796 return;
797 };
798
799 self.check_c_variadic_abi(abi, attrs, variadic_param.span, sig);
800
801 if !#[allow(non_exhaustive_omitted_patterns)] match sig.header.safety {
Safety::Unsafe(_) => true,
_ => false,
}matches!(sig.header.safety, Safety::Unsafe(_)) {
802 self.dcx().emit_err(errors::CVariadicMustBeUnsafe {
803 span: variadic_param.span,
804 unsafe_span: sig.safety_span(),
805 });
806 }
807 }
808 Extern::None => {
809 let err = errors::CVariadicNoExtern { span: variadic_param.span };
810 self.dcx().emit_err(err);
811 }
812 }
813 }
814 }
815 }
816
817 fn check_c_variadic_abi(
818 &self,
819 abi: ExternAbi,
820 attrs: &AttrVec,
821 dotdotdot_span: Span,
822 sig: &FnSig,
823 ) {
824 if attr::contains_name(attrs, sym::naked) {
827 match abi.supports_c_variadic() {
828 CVariadicStatus::Stable if let ExternAbi::C { .. } = abi => {
829 }
831 CVariadicStatus::Stable => {
832 if !self.features.enabled(sym::c_variadic_naked_functions) {
834 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Naked c-variadic `extern {0}` functions are unstable",
abi))
})format!("Naked c-variadic `extern {abi}` functions are unstable");
835 feature_err(&self.sess, sym::c_variadic_naked_functions, sig.span, msg)
836 .emit();
837 }
838 }
839 CVariadicStatus::Unstable { feature } => {
840 if !self.features.enabled(sym::c_variadic_naked_functions) {
842 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("Naked c-variadic `extern {0}` functions are unstable",
abi))
})format!("Naked c-variadic `extern {abi}` functions are unstable");
843 feature_err(&self.sess, sym::c_variadic_naked_functions, sig.span, msg)
844 .emit();
845 }
846
847 if !self.features.enabled(feature) {
848 let msg = ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("C-variadic functions with the {0} calling convention are unstable",
abi))
})format!(
849 "C-variadic functions with the {abi} calling convention are unstable"
850 );
851 feature_err(&self.sess, feature, sig.span, msg).emit();
852 }
853 }
854 CVariadicStatus::NotSupported => {
855 self.dcx().emit_err(errors::CVariadicBadNakedExtern {
857 span: dotdotdot_span,
858 abi: abi.as_str(),
859 extern_span: sig.extern_span(),
860 });
861 }
862 }
863 } else if !#[allow(non_exhaustive_omitted_patterns)] match abi {
ExternAbi::C { .. } => true,
_ => false,
}matches!(abi, ExternAbi::C { .. }) {
864 self.dcx().emit_err(errors::CVariadicBadExtern {
865 span: dotdotdot_span,
866 abi: abi.as_str(),
867 extern_span: sig.extern_span(),
868 });
869 }
870 }
871
872 fn check_item_named(&self, ident: Ident, kind: &str) {
873 if ident.name != kw::Underscore {
874 return;
875 }
876 self.dcx().emit_err(errors::ItemUnderscore { span: ident.span, kind });
877 }
878
879 fn check_nomangle_item_asciionly(&self, ident: Ident, item_span: Span) {
880 if ident.name.as_str().is_ascii() {
881 return;
882 }
883 let span = self.sess.source_map().guess_head_span(item_span);
884 self.dcx().emit_err(errors::NoMangleAscii { span });
885 }
886
887 fn check_mod_file_item_asciionly(&self, ident: Ident) {
888 if ident.name.as_str().is_ascii() {
889 return;
890 }
891 self.dcx().emit_err(errors::ModuleNonAscii { span: ident.span, name: ident.name });
892 }
893
894 fn deny_const_auto_traits(&self, constness: Const) {
895 if let Const::Yes(span) = constness {
896 self.dcx().emit_err(errors::ConstAutoTrait { span });
897 }
898 }
899
900 fn deny_generic_params(&self, generics: &Generics, ident_span: Span) {
901 if !generics.params.is_empty() {
902 self.dcx()
903 .emit_err(errors::AutoTraitGeneric { span: generics.span, ident: ident_span });
904 }
905 }
906
907 fn deny_super_traits(&self, bounds: &GenericBounds, ident: Span) {
908 if let [.., last] = &bounds[..] {
909 let span = bounds.iter().map(|b| b.span()).collect();
910 let removal = ident.shrink_to_hi().to(last.span());
911 self.dcx().emit_err(errors::AutoTraitBounds { span, removal, ident });
912 }
913 }
914
915 fn deny_where_clause(&self, where_clause: &WhereClause, ident: Span) {
916 if !where_clause.predicates.is_empty() {
917 self.dcx().emit_err(errors::AutoTraitBounds {
920 span: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[where_clause.span]))vec![where_clause.span],
921 removal: where_clause.span,
922 ident,
923 });
924 }
925 }
926
927 fn deny_items(&self, trait_items: &[Box<AssocItem>], ident_span: Span) {
928 if !trait_items.is_empty() {
929 let spans: Vec<_> = trait_items.iter().map(|i| i.kind.ident().unwrap().span).collect();
930 let total = trait_items.first().unwrap().span.to(trait_items.last().unwrap().span);
931 self.dcx().emit_err(errors::AutoTraitItems { spans, total, ident: ident_span });
932 }
933 }
934
935 fn correct_generic_order_suggestion(&self, data: &AngleBracketedArgs) -> String {
936 let lt_sugg = data.args.iter().filter_map(|arg| match arg {
938 AngleBracketedArg::Arg(lt @ GenericArg::Lifetime(_)) => {
939 Some(pprust::to_string(|s| s.print_generic_arg(lt)))
940 }
941 _ => None,
942 });
943 let args_sugg = data.args.iter().filter_map(|a| match a {
944 AngleBracketedArg::Arg(GenericArg::Lifetime(_)) | AngleBracketedArg::Constraint(_) => {
945 None
946 }
947 AngleBracketedArg::Arg(arg) => Some(pprust::to_string(|s| s.print_generic_arg(arg))),
948 });
949 let constraint_sugg = data.args.iter().filter_map(|a| match a {
951 AngleBracketedArg::Arg(_) => None,
952 AngleBracketedArg::Constraint(c) => {
953 Some(pprust::to_string(|s| s.print_assoc_item_constraint(c)))
954 }
955 });
956 ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("<{0}>",
lt_sugg.chain(args_sugg).chain(constraint_sugg).collect::<Vec<String>>().join(", ")))
})format!(
957 "<{}>",
958 lt_sugg.chain(args_sugg).chain(constraint_sugg).collect::<Vec<String>>().join(", ")
959 )
960 }
961
962 fn check_generic_args_before_constraints(&self, data: &AngleBracketedArgs) {
964 if data.args.iter().is_partitioned(|arg| #[allow(non_exhaustive_omitted_patterns)] match arg {
AngleBracketedArg::Arg(_) => true,
_ => false,
}matches!(arg, AngleBracketedArg::Arg(_))) {
966 return;
967 }
968 let (constraint_spans, arg_spans): (Vec<Span>, Vec<Span>) =
970 data.args.iter().partition_map(|arg| match arg {
971 AngleBracketedArg::Constraint(c) => Either::Left(c.span),
972 AngleBracketedArg::Arg(a) => Either::Right(a.span()),
973 });
974 let args_len = arg_spans.len();
975 let constraint_len = constraint_spans.len();
976 self.dcx().emit_err(errors::ArgsBeforeConstraint {
978 arg_spans: arg_spans.clone(),
979 constraints: constraint_spans[0],
980 args: *arg_spans.iter().last().unwrap(),
981 data: data.span,
982 constraint_spans: errors::EmptyLabelManySpans(constraint_spans),
983 arg_spans2: errors::EmptyLabelManySpans(arg_spans),
984 suggestion: self.correct_generic_order_suggestion(data),
985 constraint_len,
986 args_len,
987 });
988 }
989
990 fn visit_ty_common(&mut self, ty: &Ty) {
991 match &ty.kind {
992 TyKind::FnPtr(bfty) => {
993 self.check_fn_ptr_safety(bfty.decl_span, bfty.safety);
994 self.check_fn_decl(&bfty.decl, SelfSemantic::No);
995 Self::check_decl_no_pat(&bfty.decl, |span, _, _| {
996 self.dcx().emit_err(errors::PatternFnPointer { span });
997 });
998 if let Extern::Implicit(extern_span) = bfty.ext {
999 self.handle_missing_abi(extern_span, ty.id);
1000 }
1001 }
1002 TyKind::TraitObject(bounds, ..) => {
1003 let mut any_lifetime_bounds = false;
1004 for bound in bounds {
1005 if let GenericBound::Outlives(lifetime) = bound {
1006 if any_lifetime_bounds {
1007 self.dcx()
1008 .emit_err(errors::TraitObjectBound { span: lifetime.ident.span });
1009 break;
1010 }
1011 any_lifetime_bounds = true;
1012 }
1013 }
1014 }
1015 TyKind::ImplTrait(_, bounds) => {
1016 if let Some(outer_impl_trait_sp) = self.outer_impl_trait_span {
1017 self.dcx().emit_err(errors::NestedImplTrait {
1018 span: ty.span,
1019 outer: outer_impl_trait_sp,
1020 inner: ty.span,
1021 });
1022 }
1023
1024 if !bounds.iter().any(|b| #[allow(non_exhaustive_omitted_patterns)] match b {
GenericBound::Trait(..) => true,
_ => false,
}matches!(b, GenericBound::Trait(..))) {
1025 self.dcx().emit_err(errors::AtLeastOneTrait { span: ty.span });
1026 }
1027 }
1028 _ => {}
1029 }
1030 }
1031
1032 fn handle_missing_abi(&mut self, span: Span, id: NodeId) {
1033 if span.edition().at_least_edition_future() && self.features.explicit_extern_abis() {
1036 self.dcx().emit_err(errors::MissingAbi { span });
1037 } else if self
1038 .sess
1039 .source_map()
1040 .span_to_snippet(span)
1041 .is_ok_and(|snippet| !snippet.starts_with("#["))
1042 {
1043 self.lint_buffer.buffer_lint(
1044 MISSING_ABI,
1045 id,
1046 span,
1047 errors::MissingAbiSugg { span, default_abi: ExternAbi::FALLBACK },
1048 )
1049 }
1050 }
1051
1052 fn visit_attrs_vis(&mut self, attrs: &AttrVec, vis: &Visibility) {
1054 for elem in attrs {
match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_attribute(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(self, visit_attribute, attrs);
1055 self.visit_vis(vis);
1056 }
1057
1058 fn visit_attrs_vis_ident(&mut self, attrs: &AttrVec, vis: &Visibility, ident: &Ident) {
1060 for elem in attrs {
match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_attribute(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(self, visit_attribute, attrs);
1061 self.visit_vis(vis);
1062 self.visit_ident(ident);
1063 }
1064}
1065
1066fn validate_generic_param_order(dcx: DiagCtxtHandle<'_>, generics: &[GenericParam], span: Span) {
1069 let mut max_param: Option<ParamKindOrd> = None;
1070 let mut out_of_order = FxIndexMap::default();
1071 let mut param_idents = Vec::with_capacity(generics.len());
1072
1073 for (idx, param) in generics.iter().enumerate() {
1074 let ident = param.ident;
1075 let (kind, bounds, span) = (¶m.kind, ¶m.bounds, ident.span);
1076 let (ord_kind, ident) = match ¶m.kind {
1077 GenericParamKind::Lifetime => (ParamKindOrd::Lifetime, ident.to_string()),
1078 GenericParamKind::Type { .. } => (ParamKindOrd::TypeOrConst, ident.to_string()),
1079 GenericParamKind::Const { ty, .. } => {
1080 let ty = pprust::ty_to_string(ty);
1081 (ParamKindOrd::TypeOrConst, ::alloc::__export::must_use({
::alloc::fmt::format(format_args!("const {0}: {1}", ident, ty))
})format!("const {ident}: {ty}"))
1082 }
1083 };
1084 param_idents.push((kind, ord_kind, bounds, idx, ident));
1085 match max_param {
1086 Some(max_param) if max_param > ord_kind => {
1087 let entry = out_of_order.entry(ord_kind).or_insert((max_param, ::alloc::vec::Vec::new()vec![]));
1088 entry.1.push(span);
1089 }
1090 Some(_) | None => max_param = Some(ord_kind),
1091 };
1092 }
1093
1094 if !out_of_order.is_empty() {
1095 let mut ordered_params = "<".to_string();
1096 param_idents.sort_by_key(|&(_, po, _, i, _)| (po, i));
1097 let mut first = true;
1098 for (kind, _, bounds, _, ident) in param_idents {
1099 if !first {
1100 ordered_params += ", ";
1101 }
1102 ordered_params += &ident;
1103
1104 if !bounds.is_empty() {
1105 ordered_params += ": ";
1106 ordered_params += &pprust::bounds_to_string(bounds);
1107 }
1108
1109 match kind {
1110 GenericParamKind::Type { default: Some(default) } => {
1111 ordered_params += " = ";
1112 ordered_params += &pprust::ty_to_string(default);
1113 }
1114 GenericParamKind::Type { default: None } => (),
1115 GenericParamKind::Lifetime => (),
1116 GenericParamKind::Const { ty: _, span: _, default: Some(default) } => {
1117 ordered_params += " = ";
1118 ordered_params += &pprust::expr_to_string(&default.value);
1119 }
1120 GenericParamKind::Const { ty: _, span: _, default: None } => (),
1121 }
1122 first = false;
1123 }
1124
1125 ordered_params += ">";
1126
1127 for (param_ord, (max_param, spans)) in &out_of_order {
1128 dcx.emit_err(errors::OutOfOrderParams {
1129 spans: spans.clone(),
1130 sugg_span: span,
1131 param_ord: param_ord.to_string(),
1132 max_param: max_param.to_string(),
1133 ordered_params: &ordered_params,
1134 });
1135 }
1136 }
1137}
1138
1139impl Visitor<'_> for AstValidator<'_> {
1140 fn visit_attribute(&mut self, attr: &Attribute) {
1141 validate_attr::check_attr(&self.sess.psess, attr);
1142 }
1143
1144 fn visit_ty(&mut self, ty: &Ty) {
1145 self.visit_ty_common(ty);
1146 self.walk_ty(ty)
1147 }
1148
1149 fn visit_item(&mut self, item: &Item) {
1150 if item.attrs.iter().any(|attr| attr.is_proc_macro_attr()) {
1151 self.has_proc_macro_decls = true;
1152 }
1153
1154 let previous_lint_node_id = mem::replace(&mut self.lint_node_id, item.id);
1155
1156 if let Some(ident) = item.kind.ident()
1157 && attr::contains_name(&item.attrs, sym::no_mangle)
1158 {
1159 self.check_nomangle_item_asciionly(ident, item.span);
1160 }
1161
1162 match &item.kind {
1163 ItemKind::Impl(Impl {
1164 generics,
1165 constness,
1166 of_trait:
1167 Some(box TraitImplHeader { safety, polarity, defaultness: _, trait_ref: t }),
1168 self_ty,
1169 items,
1170 }) => {
1171 self.visit_attrs_vis(&item.attrs, &item.vis);
1172 self.visibility_not_permitted(
1173 &item.vis,
1174 errors::VisibilityNotPermittedNote::TraitImpl,
1175 );
1176 if let TyKind::Dummy = self_ty.kind {
1177 self.dcx().emit_fatal(errors::ObsoleteAuto { span: item.span });
1180 }
1181 if let (&Safety::Unsafe(span), &ImplPolarity::Negative(sp)) = (safety, polarity) {
1182 self.dcx().emit_err(errors::UnsafeNegativeImpl {
1183 span: sp.to(t.path.span),
1184 negative: sp,
1185 r#unsafe: span,
1186 });
1187 }
1188
1189 let disallowed = #[allow(non_exhaustive_omitted_patterns)] match constness {
Const::No => true,
_ => false,
}matches!(constness, Const::No)
1190 .then(|| TildeConstReason::TraitImpl { span: item.span });
1191 self.with_tilde_const(disallowed, |this| this.visit_generics(generics));
1192 self.visit_trait_ref(t);
1193 self.visit_ty(self_ty);
1194
1195 self.with_in_trait_or_impl(
1196 Some(TraitOrImpl::TraitImpl {
1197 constness: *constness,
1198 polarity: *polarity,
1199 trait_ref_span: t.path.span,
1200 }),
1201 |this| {
1202 for elem in items {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_assoc_item(elem,
AssocCtxt::Impl { of_trait: true })) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
1203 this,
1204 visit_assoc_item,
1205 items,
1206 AssocCtxt::Impl { of_trait: true }
1207 );
1208 },
1209 );
1210 }
1211 ItemKind::Impl(Impl { generics, of_trait: None, self_ty, items, constness }) => {
1212 self.visit_attrs_vis(&item.attrs, &item.vis);
1213 self.visibility_not_permitted(
1214 &item.vis,
1215 errors::VisibilityNotPermittedNote::IndividualImplItems,
1216 );
1217
1218 let disallowed = #[allow(non_exhaustive_omitted_patterns)] match constness {
ast::Const::No => true,
_ => false,
}matches!(constness, ast::Const::No)
1219 .then(|| TildeConstReason::Impl { span: item.span });
1220
1221 self.with_tilde_const(disallowed, |this| this.visit_generics(generics));
1222
1223 self.visit_ty(self_ty);
1224 self.with_in_trait_or_impl(
1225 Some(TraitOrImpl::Impl { constness: *constness }),
1226 |this| {
1227 for elem in items {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_assoc_item(elem,
AssocCtxt::Impl { of_trait: false })) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(
1228 this,
1229 visit_assoc_item,
1230 items,
1231 AssocCtxt::Impl { of_trait: false }
1232 );
1233 },
1234 );
1235 }
1236 ItemKind::Fn(
1237 func @ box Fn {
1238 defaultness,
1239 ident,
1240 generics: _,
1241 sig,
1242 contract: _,
1243 body,
1244 define_opaque: _,
1245 eii_impls,
1246 },
1247 ) => {
1248 self.visit_attrs_vis_ident(&item.attrs, &item.vis, ident);
1249 self.check_defaultness(item.span, *defaultness, AllowDefault::No, AllowFinal::No);
1250
1251 for EiiImpl { eii_macro_path, .. } in eii_impls {
1252 self.visit_path(eii_macro_path);
1253 }
1254
1255 let is_intrinsic = item.attrs.iter().any(|a| a.has_name(sym::rustc_intrinsic));
1256 if body.is_none() && !is_intrinsic && !self.is_sdylib_interface {
1257 self.dcx().emit_err(errors::FnWithoutBody {
1258 span: item.span,
1259 replace_span: self.ending_semi_or_hi(item.span),
1260 extern_block_suggestion: match sig.header.ext {
1261 Extern::None => None,
1262 Extern::Implicit(start_span) => {
1263 Some(errors::ExternBlockSuggestion::Implicit {
1264 start_span,
1265 end_span: item.span.shrink_to_hi(),
1266 })
1267 }
1268 Extern::Explicit(abi, start_span) => {
1269 Some(errors::ExternBlockSuggestion::Explicit {
1270 start_span,
1271 end_span: item.span.shrink_to_hi(),
1272 abi: abi.symbol_unescaped,
1273 })
1274 }
1275 },
1276 });
1277 }
1278
1279 let kind = FnKind::Fn(FnCtxt::Free, &item.vis, &*func);
1280 self.visit_fn(kind, &item.attrs, item.span, item.id);
1281 }
1282 ItemKind::ForeignMod(ForeignMod { extern_span, abi, safety, .. }) => {
1283 let old_item = mem::replace(&mut self.extern_mod_span, Some(item.span));
1284 self.visibility_not_permitted(
1285 &item.vis,
1286 errors::VisibilityNotPermittedNote::IndividualForeignItems,
1287 );
1288
1289 if &Safety::Default == safety {
1290 if item.span.at_least_rust_2024() {
1291 self.dcx().emit_err(errors::MissingUnsafeOnExtern { span: item.span });
1292 } else {
1293 self.lint_buffer.buffer_lint(
1294 MISSING_UNSAFE_ON_EXTERN,
1295 item.id,
1296 item.span,
1297 errors::MissingUnsafeOnExternLint {
1298 suggestion: item.span.shrink_to_lo(),
1299 },
1300 );
1301 }
1302 }
1303
1304 if abi.is_none() {
1305 self.handle_missing_abi(*extern_span, item.id);
1306 }
1307
1308 let extern_abi = abi.and_then(|abi| ExternAbi::from_str(abi.symbol.as_str()).ok());
1309 self.with_in_extern_mod(*safety, extern_abi, |this| {
1310 visit::walk_item(this, item);
1311 });
1312 self.extern_mod_span = old_item;
1313 }
1314 ItemKind::Enum(_, _, def) => {
1315 for variant in &def.variants {
1316 self.visibility_not_permitted(
1317 &variant.vis,
1318 errors::VisibilityNotPermittedNote::EnumVariant,
1319 );
1320 for field in variant.data.fields() {
1321 self.visibility_not_permitted(
1322 &field.vis,
1323 errors::VisibilityNotPermittedNote::EnumVariant,
1324 );
1325 }
1326 }
1327 self.with_tilde_const(Some(TildeConstReason::Enum { span: item.span }), |this| {
1328 visit::walk_item(this, item)
1329 });
1330 }
1331 ItemKind::Trait(box Trait {
1332 constness,
1333 is_auto,
1334 generics,
1335 ident,
1336 bounds,
1337 items,
1338 ..
1339 }) => {
1340 self.visit_attrs_vis_ident(&item.attrs, &item.vis, ident);
1341 if *is_auto == IsAuto::Yes {
1342 self.deny_const_auto_traits(*constness);
1344 self.deny_generic_params(generics, ident.span);
1346 self.deny_super_traits(bounds, ident.span);
1347 self.deny_where_clause(&generics.where_clause, ident.span);
1348 self.deny_items(items, ident.span);
1349 }
1350
1351 let disallowed = #[allow(non_exhaustive_omitted_patterns)] match constness {
ast::Const::No => true,
_ => false,
}matches!(constness, ast::Const::No)
1354 .then(|| TildeConstReason::Trait { span: item.span });
1355 self.with_tilde_const(disallowed, |this| {
1356 this.visit_generics(generics);
1357 for elem in bounds {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_param_bound(elem,
BoundKind::SuperTraits)) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
}walk_list!(this, visit_param_bound, bounds, BoundKind::SuperTraits)
1358 });
1359 self.with_in_trait(item.span, *constness, |this| {
1360 for elem in items {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_assoc_item(elem,
AssocCtxt::Trait)) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(this, visit_assoc_item, items, AssocCtxt::Trait);
1361 });
1362 }
1363 ItemKind::TraitAlias(box TraitAlias { constness, generics, bounds, .. }) => {
1364 let disallowed = #[allow(non_exhaustive_omitted_patterns)] match constness {
ast::Const::No => true,
_ => false,
}matches!(constness, ast::Const::No)
1365 .then(|| TildeConstReason::Trait { span: item.span });
1366 self.with_tilde_const(disallowed, |this| {
1367 this.visit_generics(generics);
1368 for elem in bounds {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_param_bound(elem,
BoundKind::SuperTraits)) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
}walk_list!(this, visit_param_bound, bounds, BoundKind::SuperTraits)
1369 });
1370 }
1371 ItemKind::Mod(safety, ident, mod_kind) => {
1372 if let &Safety::Unsafe(span) = safety {
1373 self.dcx().emit_err(errors::UnsafeItem { span, kind: "module" });
1374 }
1375 if !#[allow(non_exhaustive_omitted_patterns)] match mod_kind {
ModKind::Loaded(_, Inline::Yes, _) => true,
_ => false,
}matches!(mod_kind, ModKind::Loaded(_, Inline::Yes, _))
1377 && !attr::contains_name(&item.attrs, sym::path)
1378 {
1379 self.check_mod_file_item_asciionly(*ident);
1380 }
1381 visit::walk_item(self, item)
1382 }
1383 ItemKind::Struct(ident, generics, vdata) => {
1384 self.with_tilde_const(Some(TildeConstReason::Struct { span: item.span }), |this| {
1385 let scalable_vector_attr =
1387 item.attrs.iter().find(|attr| attr.has_name(sym::rustc_scalable_vector));
1388 if let Some(attr) = scalable_vector_attr {
1389 if !#[allow(non_exhaustive_omitted_patterns)] match vdata {
VariantData::Tuple(..) => true,
_ => false,
}matches!(vdata, VariantData::Tuple(..)) {
1390 this.dcx()
1391 .emit_err(errors::ScalableVectorNotTupleStruct { span: item.span });
1392 }
1393 if !self.sess.target.arch.supports_scalable_vectors()
1394 && !self.sess.opts.actually_rustdoc
1395 {
1396 this.dcx().emit_err(errors::ScalableVectorBadArch { span: attr.span });
1397 }
1398 }
1399
1400 match vdata {
1401 VariantData::Struct { fields, .. } => {
1402 this.visit_attrs_vis_ident(&item.attrs, &item.vis, ident);
1403 this.visit_generics(generics);
1404 for elem in fields {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_field_def(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(this, visit_field_def, fields);
1405 }
1406 _ => visit::walk_item(this, item),
1407 }
1408 })
1409 }
1410 ItemKind::Union(ident, generics, vdata) => {
1411 if vdata.fields().is_empty() {
1412 self.dcx().emit_err(errors::FieldlessUnion { span: item.span });
1413 }
1414 self.with_tilde_const(Some(TildeConstReason::Union { span: item.span }), |this| {
1415 match vdata {
1416 VariantData::Struct { fields, .. } => {
1417 this.visit_attrs_vis_ident(&item.attrs, &item.vis, ident);
1418 this.visit_generics(generics);
1419 for elem in fields {
match ::rustc_ast_ir::visit::VisitorResult::branch(this.visit_field_def(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(this, visit_field_def, fields);
1420 }
1421 _ => visit::walk_item(this, item),
1422 }
1423 });
1424 }
1425 ItemKind::Const(box ConstItem { defaultness, ident, rhs_kind, .. }) => {
1426 self.check_defaultness(item.span, *defaultness, AllowDefault::No, AllowFinal::No);
1427 if !rhs_kind.has_expr() {
1428 self.dcx().emit_err(errors::ConstWithoutBody {
1429 span: item.span,
1430 replace_span: self.ending_semi_or_hi(item.span),
1431 });
1432 }
1433 if ident.name == kw::Underscore
1434 && !#[allow(non_exhaustive_omitted_patterns)] match item.vis.kind {
VisibilityKind::Inherited => true,
_ => false,
}matches!(item.vis.kind, VisibilityKind::Inherited)
1435 && ident.span.eq_ctxt(item.vis.span)
1436 {
1437 self.lint_buffer.buffer_lint(
1438 UNUSED_VISIBILITIES,
1439 item.id,
1440 item.vis.span,
1441 errors::UnusedVisibility { span: item.vis.span },
1442 )
1443 }
1444
1445 visit::walk_item(self, item);
1446 }
1447 ItemKind::Static(box StaticItem { expr, safety, .. }) => {
1448 self.check_item_safety(item.span, *safety);
1449 if #[allow(non_exhaustive_omitted_patterns)] match safety {
Safety::Unsafe(_) => true,
_ => false,
}matches!(safety, Safety::Unsafe(_)) {
1450 self.dcx().emit_err(errors::UnsafeStatic { span: item.span });
1451 }
1452
1453 if expr.is_none() {
1454 self.dcx().emit_err(errors::StaticWithoutBody {
1455 span: item.span,
1456 replace_span: self.ending_semi_or_hi(item.span),
1457 });
1458 }
1459 visit::walk_item(self, item);
1460 }
1461 ItemKind::TyAlias(
1462 ty_alias @ box TyAlias { defaultness, bounds, after_where_clause, ty, .. },
1463 ) => {
1464 self.check_defaultness(item.span, *defaultness, AllowDefault::No, AllowFinal::No);
1465 if ty.is_none() {
1466 self.dcx().emit_err(errors::TyAliasWithoutBody {
1467 span: item.span,
1468 replace_span: self.ending_semi_or_hi(item.span),
1469 });
1470 }
1471 self.check_type_no_bounds(bounds, "this context");
1472
1473 if self.features.lazy_type_alias() {
1474 if let Err(err) = self.check_type_alias_where_clause_location(ty_alias) {
1475 self.dcx().emit_err(err);
1476 }
1477 } else if after_where_clause.has_where_token {
1478 self.dcx().emit_err(errors::WhereClauseAfterTypeAlias {
1479 span: after_where_clause.span,
1480 help: self.sess.is_nightly_build(),
1481 });
1482 }
1483 visit::walk_item(self, item);
1484 }
1485 _ => visit::walk_item(self, item),
1486 }
1487
1488 self.lint_node_id = previous_lint_node_id;
1489 }
1490
1491 fn visit_foreign_item(&mut self, fi: &ForeignItem) {
1492 match &fi.kind {
1493 ForeignItemKind::Fn(box Fn { defaultness, ident, sig, body, .. }) => {
1494 self.check_defaultness(fi.span, *defaultness, AllowDefault::No, AllowFinal::No);
1495 self.check_foreign_fn_bodyless(*ident, body.as_deref());
1496 self.check_foreign_fn_headerless(sig.header);
1497 self.check_foreign_item_ascii_only(*ident);
1498 self.check_extern_fn_signature(
1499 self.extern_mod_abi.unwrap_or(ExternAbi::FALLBACK),
1500 FnCtxt::Foreign,
1501 ident,
1502 sig,
1503 );
1504
1505 if let Some(attr) = attr::find_by_name(fi.attrs(), sym::track_caller)
1506 && self.extern_mod_abi != Some(ExternAbi::Rust)
1507 {
1508 self.dcx().emit_err(errors::RequiresRustAbi {
1509 track_caller_span: attr.span,
1510 extern_abi_span: self.current_extern_span(),
1511 });
1512 }
1513 }
1514 ForeignItemKind::TyAlias(box TyAlias {
1515 defaultness,
1516 ident,
1517 generics,
1518 after_where_clause,
1519 bounds,
1520 ty,
1521 ..
1522 }) => {
1523 self.check_defaultness(fi.span, *defaultness, AllowDefault::No, AllowFinal::No);
1524 self.check_foreign_kind_bodyless(*ident, "type", ty.as_ref().map(|b| b.span));
1525 self.check_type_no_bounds(bounds, "`extern` blocks");
1526 self.check_foreign_ty_genericless(generics, after_where_clause);
1527 self.check_foreign_item_ascii_only(*ident);
1528 }
1529 ForeignItemKind::Static(box StaticItem { ident, safety, expr, .. }) => {
1530 self.check_item_safety(fi.span, *safety);
1531 self.check_foreign_kind_bodyless(*ident, "static", expr.as_ref().map(|b| b.span));
1532 self.check_foreign_item_ascii_only(*ident);
1533 }
1534 ForeignItemKind::MacCall(..) => {}
1535 }
1536
1537 visit::walk_item(self, fi)
1538 }
1539
1540 fn visit_generic_args(&mut self, generic_args: &GenericArgs) {
1542 match generic_args {
1543 GenericArgs::AngleBracketed(data) => {
1544 self.check_generic_args_before_constraints(data);
1545
1546 for arg in &data.args {
1547 match arg {
1548 AngleBracketedArg::Arg(arg) => self.visit_generic_arg(arg),
1549 AngleBracketedArg::Constraint(constraint) => {
1552 self.with_impl_trait(None, |this| {
1553 this.visit_assoc_item_constraint(constraint);
1554 });
1555 }
1556 }
1557 }
1558 }
1559 GenericArgs::Parenthesized(data) => {
1560 for elem in &data.inputs {
match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_ty(elem)) {
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(self, visit_ty, &data.inputs);
1561 if let FnRetTy::Ty(ty) = &data.output {
1562 self.with_impl_trait(None, |this| this.visit_ty(ty));
1565 }
1566 }
1567 GenericArgs::ParenthesizedElided(_span) => {}
1568 }
1569 }
1570
1571 fn visit_generics(&mut self, generics: &Generics) {
1572 let mut prev_param_default = None;
1573 for param in &generics.params {
1574 match param.kind {
1575 GenericParamKind::Lifetime => (),
1576 GenericParamKind::Type { default: Some(_), .. }
1577 | GenericParamKind::Const { default: Some(_), .. } => {
1578 prev_param_default = Some(param.ident.span);
1579 }
1580 GenericParamKind::Type { .. } | GenericParamKind::Const { .. } => {
1581 if let Some(span) = prev_param_default {
1582 self.dcx().emit_err(errors::GenericDefaultTrailing { span });
1583 break;
1584 }
1585 }
1586 }
1587 }
1588
1589 validate_generic_param_order(self.dcx(), &generics.params, generics.span);
1590
1591 for predicate in &generics.where_clause.predicates {
1592 let span = predicate.span;
1593 if let WherePredicateKind::EqPredicate(predicate) = &predicate.kind {
1594 deny_equality_constraints(self, predicate, span, generics);
1595 }
1596 }
1597 for elem in &generics.params {
match ::rustc_ast_ir::visit::VisitorResult::branch(self.visit_generic_param(elem))
{
core::ops::ControlFlow::Continue(()) =>
(),
#[allow(unreachable_code)]
core::ops::ControlFlow::Break(r) => {
return ::rustc_ast_ir::visit::VisitorResult::from_residual(r);
}
};
};walk_list!(self, visit_generic_param, &generics.params);
1598 for predicate in &generics.where_clause.predicates {
1599 match &predicate.kind {
1600 WherePredicateKind::BoundPredicate(bound_pred) => {
1601 if !bound_pred.bound_generic_params.is_empty() {
1607 for bound in &bound_pred.bounds {
1608 match bound {
1609 GenericBound::Trait(t) => {
1610 if !t.bound_generic_params.is_empty() {
1611 self.dcx()
1612 .emit_err(errors::NestedLifetimes { span: t.span });
1613 }
1614 }
1615 GenericBound::Outlives(_) => {}
1616 GenericBound::Use(..) => {}
1617 }
1618 }
1619 }
1620 }
1621 _ => {}
1622 }
1623 self.visit_where_predicate(predicate);
1624 }
1625 }
1626
1627 fn visit_param_bound(&mut self, bound: &GenericBound, ctxt: BoundKind) {
1628 match bound {
1629 GenericBound::Trait(trait_ref) => {
1630 match (ctxt, trait_ref.modifiers.constness, trait_ref.modifiers.polarity) {
1631 (
1632 BoundKind::TraitObject,
1633 BoundConstness::Always(_),
1634 BoundPolarity::Positive,
1635 ) => {
1636 self.dcx().emit_err(errors::ConstBoundTraitObject { span: trait_ref.span });
1637 }
1638 (_, BoundConstness::Maybe(span), BoundPolarity::Positive)
1639 if let Some(reason) = self.disallow_tilde_const =>
1640 {
1641 self.dcx().emit_err(errors::TildeConstDisallowed { span, reason });
1642 }
1643 _ => {}
1644 }
1645
1646 if let BoundPolarity::Negative(_) = trait_ref.modifiers.polarity
1648 && let Some(segment) = trait_ref.trait_ref.path.segments.last()
1649 {
1650 match segment.args.as_deref() {
1651 Some(ast::GenericArgs::AngleBracketed(args)) => {
1652 for arg in &args.args {
1653 if let ast::AngleBracketedArg::Constraint(constraint) = arg {
1654 self.dcx().emit_err(errors::ConstraintOnNegativeBound {
1655 span: constraint.span,
1656 });
1657 }
1658 }
1659 }
1660 Some(ast::GenericArgs::Parenthesized(args)) => {
1662 self.dcx().emit_err(errors::NegativeBoundWithParentheticalNotation {
1663 span: args.span,
1664 });
1665 }
1666 Some(ast::GenericArgs::ParenthesizedElided(_)) | None => {}
1667 }
1668 }
1669 }
1670 GenericBound::Outlives(_) => {}
1671 GenericBound::Use(_, span) => match ctxt {
1672 BoundKind::Impl => {}
1673 BoundKind::Bound | BoundKind::TraitObject | BoundKind::SuperTraits => {
1674 self.dcx().emit_err(errors::PreciseCapturingNotAllowedHere {
1675 loc: ctxt.descr(),
1676 span: *span,
1677 });
1678 }
1679 },
1680 }
1681
1682 visit::walk_param_bound(self, bound)
1683 }
1684
1685 fn visit_fn(&mut self, fk: FnKind<'_>, attrs: &AttrVec, span: Span, id: NodeId) {
1686 let self_semantic = match fk.ctxt() {
1688 Some(FnCtxt::Assoc(_)) => SelfSemantic::Yes,
1689 _ => SelfSemantic::No,
1690 };
1691 self.check_fn_decl(fk.decl(), self_semantic);
1692
1693 if let Some(&FnHeader { safety, .. }) = fk.header() {
1694 self.check_item_safety(span, safety);
1695 }
1696
1697 if let FnKind::Fn(ctxt, _, fun) = fk {
1698 let ext = match fun.sig.header.ext {
1699 Extern::None => None,
1700 Extern::Implicit(span) => Some((ExternAbi::FALLBACK, span)),
1701 Extern::Explicit(str_lit, span) => {
1702 ExternAbi::from_str(str_lit.symbol.as_str()).ok().map(|abi| (abi, span))
1703 }
1704 };
1705
1706 if let Some((extern_abi, extern_abi_span)) = ext {
1707 self.check_extern_fn_signature(extern_abi, ctxt, &fun.ident, &fun.sig);
1709
1710 if let Some(attr) = attr::find_by_name(attrs, sym::track_caller)
1712 && extern_abi != ExternAbi::Rust
1713 {
1714 self.dcx().emit_err(errors::RequiresRustAbi {
1715 track_caller_span: attr.span,
1716 extern_abi_span,
1717 });
1718 }
1719 }
1720 }
1721
1722 self.check_c_variadic_type(fk, attrs);
1723
1724 if let Some(&FnHeader {
1726 constness: Const::Yes(const_span),
1727 coroutine_kind: Some(coroutine_kind),
1728 ..
1729 }) = fk.header()
1730 {
1731 self.dcx().emit_err(errors::ConstAndCoroutine {
1732 spans: ::alloc::boxed::box_assume_init_into_vec_unsafe(::alloc::intrinsics::write_box_via_move(::alloc::boxed::Box::new_uninit(),
[coroutine_kind.span(), const_span]))vec![coroutine_kind.span(), const_span],
1733 const_span,
1734 coroutine_span: coroutine_kind.span(),
1735 coroutine_kind: coroutine_kind.as_str(),
1736 span,
1737 });
1738 }
1739
1740 if let FnKind::Fn(
1741 _,
1742 _,
1743 Fn {
1744 sig: FnSig { header: FnHeader { ext: Extern::Implicit(extern_span), .. }, .. },
1745 ..
1746 },
1747 ) = fk
1748 {
1749 self.handle_missing_abi(*extern_span, id);
1750 }
1751
1752 if let FnKind::Fn(ctxt, _, Fn { body: None, sig, .. }) = fk {
1754 Self::check_decl_no_pat(&sig.decl, |span, ident, mut_ident| {
1755 if mut_ident && #[allow(non_exhaustive_omitted_patterns)] match ctxt {
FnCtxt::Assoc(_) => true,
_ => false,
}matches!(ctxt, FnCtxt::Assoc(_)) {
1756 if let Some(ident) = ident {
1757 let is_foreign = #[allow(non_exhaustive_omitted_patterns)] match ctxt {
FnCtxt::Foreign => true,
_ => false,
}matches!(ctxt, FnCtxt::Foreign);
1758 self.lint_buffer.dyn_buffer_lint(
1759 PATTERNS_IN_FNS_WITHOUT_BODY,
1760 id,
1761 span,
1762 move |dcx, level| {
1763 let sub = errors::PatternsInFnsWithoutBodySub { ident, span };
1764 if is_foreign {
1765 errors::PatternsInFnsWithoutBody::Foreign { sub }
1766 } else {
1767 errors::PatternsInFnsWithoutBody::Bodiless { sub }
1768 }
1769 .into_diag(dcx, level)
1770 },
1771 )
1772 }
1773 } else {
1774 match ctxt {
1775 FnCtxt::Foreign => self.dcx().emit_err(errors::PatternInForeign { span }),
1776 _ => self.dcx().emit_err(errors::PatternInBodiless { span }),
1777 };
1778 }
1779 });
1780 }
1781
1782 let tilde_const_allowed =
1783 #[allow(non_exhaustive_omitted_patterns)] match fk.header() {
Some(FnHeader { constness: ast::Const::Yes(_), .. }) => true,
_ => false,
}matches!(fk.header(), Some(FnHeader { constness: ast::Const::Yes(_), .. }))
1784 || #[allow(non_exhaustive_omitted_patterns)] match fk.ctxt() {
Some(FnCtxt::Assoc(_)) => true,
_ => false,
}matches!(fk.ctxt(), Some(FnCtxt::Assoc(_)))
1785 && self
1786 .outer_trait_or_trait_impl
1787 .as_ref()
1788 .and_then(TraitOrImpl::constness)
1789 .is_some();
1790
1791 let disallowed = (!tilde_const_allowed).then(|| match fk {
1792 FnKind::Fn(_, _, f) => TildeConstReason::Function { ident: f.ident.span },
1793 FnKind::Closure(..) => TildeConstReason::Closure,
1794 });
1795 self.with_tilde_const(disallowed, |this| visit::walk_fn(this, fk));
1796 }
1797
1798 fn visit_assoc_item(&mut self, item: &AssocItem, ctxt: AssocCtxt) {
1799 if let Some(ident) = item.kind.ident()
1800 && attr::contains_name(&item.attrs, sym::no_mangle)
1801 {
1802 self.check_nomangle_item_asciionly(ident, item.span);
1803 }
1804
1805 let defaultness = item.kind.defaultness();
1806 self.check_defaultness(
1807 item.span,
1808 defaultness,
1809 AllowDefault::when(#[allow(non_exhaustive_omitted_patterns)] match ctxt {
AssocCtxt::Impl { .. } => true,
_ => false,
}matches!(ctxt, AssocCtxt::Impl { .. })),
1811 AllowFinal::when(
1813 ctxt == AssocCtxt::Trait && #[allow(non_exhaustive_omitted_patterns)] match item.kind {
AssocItemKind::Fn(..) => true,
_ => false,
}matches!(item.kind, AssocItemKind::Fn(..)),
1814 ),
1815 );
1816
1817 self.check_final_has_body(item, defaultness);
1818
1819 if let AssocCtxt::Impl { .. } = ctxt {
1820 match &item.kind {
1821 AssocItemKind::Const(box ConstItem { rhs_kind, .. }) => {
1822 if !rhs_kind.has_expr() {
1823 self.dcx().emit_err(errors::AssocConstWithoutBody {
1824 span: item.span,
1825 replace_span: self.ending_semi_or_hi(item.span),
1826 });
1827 }
1828 }
1829 AssocItemKind::Fn(box Fn { body, .. }) => {
1830 if body.is_none() && !self.is_sdylib_interface {
1831 self.dcx().emit_err(errors::AssocFnWithoutBody {
1832 span: item.span,
1833 replace_span: self.ending_semi_or_hi(item.span),
1834 });
1835 }
1836 }
1837 AssocItemKind::Type(box TyAlias { bounds, ty, .. }) => {
1838 if ty.is_none() {
1839 self.dcx().emit_err(errors::AssocTypeWithoutBody {
1840 span: item.span,
1841 replace_span: self.ending_semi_or_hi(item.span),
1842 });
1843 }
1844 self.check_type_no_bounds(bounds, "`impl`s");
1845 }
1846 _ => {}
1847 }
1848 }
1849
1850 if let AssocItemKind::Type(ty_alias) = &item.kind
1851 && let Err(err) = self.check_type_alias_where_clause_location(ty_alias)
1852 {
1853 let sugg = match err.sugg {
1854 errors::WhereClauseBeforeTypeAliasSugg::Remove { .. } => None,
1855 errors::WhereClauseBeforeTypeAliasSugg::Move { snippet, right, .. } => {
1856 Some((right, snippet))
1857 }
1858 };
1859 let left_sp = self
1860 .sess
1861 .source_map()
1862 .span_extend_prev_while(err.span, char::is_whitespace)
1863 .unwrap_or(err.span);
1864 self.lint_buffer.dyn_buffer_lint(
1865 DEPRECATED_WHERE_CLAUSE_LOCATION,
1866 item.id,
1867 err.span,
1868 move |dcx, level| {
1869 let suggestion = match sugg {
1870 Some((right_sp, sugg)) => {
1871 errors::DeprecatedWhereClauseLocationSugg::MoveToEnd {
1872 left: left_sp,
1873 right: right_sp,
1874 sugg,
1875 }
1876 }
1877 None => errors::DeprecatedWhereClauseLocationSugg::RemoveWhere {
1878 span: err.span,
1879 },
1880 };
1881 errors::DeprecatedWhereClauseLocation { suggestion }.into_diag(dcx, level)
1882 },
1883 );
1884 }
1885
1886 match &self.outer_trait_or_trait_impl {
1887 Some(parent @ (TraitOrImpl::Trait { .. } | TraitOrImpl::TraitImpl { .. })) => {
1888 self.visibility_not_permitted(
1889 &item.vis,
1890 errors::VisibilityNotPermittedNote::TraitImpl,
1891 );
1892 if let AssocItemKind::Fn(box Fn { sig, .. }) = &item.kind {
1893 self.check_trait_fn_not_const(sig.header.constness, parent);
1894 self.check_async_fn_in_const_trait_or_impl(sig, parent);
1895 }
1896 }
1897 Some(parent @ TraitOrImpl::Impl { constness }) => {
1898 if let AssocItemKind::Fn(box Fn { sig, .. }) = &item.kind {
1899 self.check_impl_fn_not_const(sig.header.constness, *constness);
1900 self.check_async_fn_in_const_trait_or_impl(sig, parent);
1901 }
1902 }
1903 None => {}
1904 }
1905
1906 if let AssocItemKind::Const(ci) = &item.kind {
1907 self.check_item_named(ci.ident, "const");
1908 }
1909
1910 let parent_is_const =
1911 self.outer_trait_or_trait_impl.as_ref().and_then(TraitOrImpl::constness).is_some();
1912
1913 match &item.kind {
1914 AssocItemKind::Fn(func)
1915 if parent_is_const
1916 || ctxt == AssocCtxt::Trait
1917 || #[allow(non_exhaustive_omitted_patterns)] match func.sig.header.constness {
Const::Yes(_) => true,
_ => false,
}matches!(func.sig.header.constness, Const::Yes(_)) =>
1918 {
1919 self.visit_attrs_vis_ident(&item.attrs, &item.vis, &func.ident);
1920 let kind = FnKind::Fn(FnCtxt::Assoc(ctxt), &item.vis, &*func);
1921 self.visit_fn(kind, &item.attrs, item.span, item.id);
1922 }
1923 AssocItemKind::Type(_) => {
1924 let disallowed = (!parent_is_const).then(|| match self.outer_trait_or_trait_impl {
1925 Some(TraitOrImpl::Trait { .. }) => {
1926 TildeConstReason::TraitAssocTy { span: item.span }
1927 }
1928 Some(TraitOrImpl::TraitImpl { .. }) => {
1929 TildeConstReason::TraitImplAssocTy { span: item.span }
1930 }
1931 Some(TraitOrImpl::Impl { .. }) | None => {
1932 TildeConstReason::InherentAssocTy { span: item.span }
1933 }
1934 });
1935 self.with_tilde_const(disallowed, |this| {
1936 this.with_in_trait_or_impl(None, |this| {
1937 visit::walk_assoc_item(this, item, ctxt)
1938 })
1939 })
1940 }
1941 _ => self.with_in_trait_or_impl(None, |this| visit::walk_assoc_item(this, item, ctxt)),
1942 }
1943 }
1944
1945 fn visit_anon_const(&mut self, anon_const: &AnonConst) {
1946 self.with_tilde_const(
1947 Some(TildeConstReason::AnonConst { span: anon_const.value.span }),
1948 |this| visit::walk_anon_const(this, anon_const),
1949 )
1950 }
1951}
1952
1953fn deny_equality_constraints(
1956 this: &AstValidator<'_>,
1957 predicate: &WhereEqPredicate,
1958 predicate_span: Span,
1959 generics: &Generics,
1960) {
1961 let mut err = errors::EqualityInWhere { span: predicate_span, assoc: None, assoc2: None };
1962
1963 if let TyKind::Path(Some(qself), full_path) = &predicate.lhs_ty.kind
1965 && let TyKind::Path(None, path) = &qself.ty.kind
1966 && let [PathSegment { ident, args: None, .. }] = &path.segments[..]
1967 {
1968 for param in &generics.params {
1969 if param.ident == *ident
1970 && let [PathSegment { ident, args, .. }] = &full_path.segments[qself.position..]
1971 {
1972 let mut assoc_path = full_path.clone();
1974 assoc_path.segments.pop();
1976 let len = assoc_path.segments.len() - 1;
1977 let gen_args = args.as_deref().cloned();
1978 let arg = AngleBracketedArg::Constraint(AssocItemConstraint {
1980 id: rustc_ast::node_id::DUMMY_NODE_ID,
1981 ident: *ident,
1982 gen_args,
1983 kind: AssocItemConstraintKind::Equality {
1984 term: predicate.rhs_ty.clone().into(),
1985 },
1986 span: ident.span,
1987 });
1988 match &mut assoc_path.segments[len].args {
1990 Some(args) => match args.deref_mut() {
1991 GenericArgs::Parenthesized(_) | GenericArgs::ParenthesizedElided(..) => {
1992 continue;
1993 }
1994 GenericArgs::AngleBracketed(args) => {
1995 args.args.push(arg);
1996 }
1997 },
1998 empty_args => {
1999 *empty_args = Some(
2000 AngleBracketedArgs { span: ident.span, args: {
let len = [()].len();
let mut vec = ::thin_vec::ThinVec::with_capacity(len);
vec.push(arg);
vec
}thin_vec![arg] }.into(),
2001 );
2002 }
2003 }
2004 err.assoc = Some(errors::AssociatedSuggestion {
2005 span: predicate_span,
2006 ident: *ident,
2007 param: param.ident,
2008 path: pprust::path_to_string(&assoc_path),
2009 })
2010 }
2011 }
2012 }
2013
2014 let mut suggest =
2015 |poly: &PolyTraitRef, potential_assoc: &PathSegment, predicate: &WhereEqPredicate| {
2016 if let [trait_segment] = &poly.trait_ref.path.segments[..] {
2017 let assoc = pprust::path_to_string(&ast::Path::from_ident(potential_assoc.ident));
2018 let ty = pprust::ty_to_string(&predicate.rhs_ty);
2019 let (args, span) = match &trait_segment.args {
2020 Some(args) => match args.deref() {
2021 ast::GenericArgs::AngleBracketed(args) => {
2022 let Some(arg) = args.args.last() else {
2023 return;
2024 };
2025 (::alloc::__export::must_use({
::alloc::fmt::format(format_args!(", {0} = {1}", assoc, ty))
})format!(", {assoc} = {ty}"), arg.span().shrink_to_hi())
2026 }
2027 _ => return,
2028 },
2029 None => (::alloc::__export::must_use({
::alloc::fmt::format(format_args!("<{0} = {1}>", assoc, ty))
})format!("<{assoc} = {ty}>"), trait_segment.span().shrink_to_hi()),
2030 };
2031 let removal_span = if generics.where_clause.predicates.len() == 1 {
2032 generics.where_clause.span
2034 } else {
2035 let mut span = predicate_span;
2036 let mut prev_span: Option<Span> = None;
2037 let mut preds = generics.where_clause.predicates.iter().peekable();
2038 while let Some(pred) = preds.next() {
2040 if let WherePredicateKind::EqPredicate(_) = pred.kind
2041 && pred.span == predicate_span
2042 {
2043 if let Some(next) = preds.peek() {
2044 span = span.with_hi(next.span.lo());
2046 } else if let Some(prev_span) = prev_span {
2047 span = span.with_lo(prev_span.hi());
2049 }
2050 }
2051 prev_span = Some(pred.span);
2052 }
2053 span
2054 };
2055 err.assoc2 = Some(errors::AssociatedSuggestion2 {
2056 span,
2057 args,
2058 predicate: removal_span,
2059 trait_segment: trait_segment.ident,
2060 potential_assoc: potential_assoc.ident,
2061 });
2062 }
2063 };
2064
2065 if let TyKind::Path(None, full_path) = &predicate.lhs_ty.kind {
2066 for bounds in generics.params.iter().map(|p| &p.bounds).chain(
2068 generics.where_clause.predicates.iter().filter_map(|pred| match &pred.kind {
2069 WherePredicateKind::BoundPredicate(p) => Some(&p.bounds),
2070 _ => None,
2071 }),
2072 ) {
2073 for bound in bounds {
2074 if let GenericBound::Trait(poly) = bound
2075 && poly.modifiers == TraitBoundModifiers::NONE
2076 {
2077 if full_path.segments[..full_path.segments.len() - 1]
2078 .iter()
2079 .map(|segment| segment.ident.name)
2080 .zip(poly.trait_ref.path.segments.iter().map(|segment| segment.ident.name))
2081 .all(|(a, b)| a == b)
2082 && let Some(potential_assoc) = full_path.segments.last()
2083 {
2084 suggest(poly, potential_assoc, predicate);
2085 }
2086 }
2087 }
2088 }
2089 if let [potential_param, potential_assoc] = &full_path.segments[..] {
2091 for (ident, bounds) in generics.params.iter().map(|p| (p.ident, &p.bounds)).chain(
2092 generics.where_clause.predicates.iter().filter_map(|pred| match &pred.kind {
2093 WherePredicateKind::BoundPredicate(p)
2094 if let ast::TyKind::Path(None, path) = &p.bounded_ty.kind
2095 && let [segment] = &path.segments[..] =>
2096 {
2097 Some((segment.ident, &p.bounds))
2098 }
2099 _ => None,
2100 }),
2101 ) {
2102 if ident == potential_param.ident {
2103 for bound in bounds {
2104 if let ast::GenericBound::Trait(poly) = bound
2105 && poly.modifiers == TraitBoundModifiers::NONE
2106 {
2107 suggest(poly, potential_assoc, predicate);
2108 }
2109 }
2110 }
2111 }
2112 }
2113 }
2114 this.dcx().emit_err(err);
2115}
2116
2117pub fn check_crate(
2118 sess: &Session,
2119 features: &Features,
2120 krate: &Crate,
2121 is_sdylib_interface: bool,
2122 lints: &mut LintBuffer,
2123) -> bool {
2124 let mut validator = AstValidator {
2125 sess,
2126 features,
2127 extern_mod_span: None,
2128 outer_trait_or_trait_impl: None,
2129 has_proc_macro_decls: false,
2130 outer_impl_trait_span: None,
2131 disallow_tilde_const: Some(TildeConstReason::Item),
2132 extern_mod_safety: None,
2133 extern_mod_abi: None,
2134 lint_node_id: CRATE_NODE_ID,
2135 is_sdylib_interface,
2136 lint_buffer: lints,
2137 };
2138 visit::walk_crate(&mut validator, krate);
2139
2140 validator.has_proc_macro_decls
2141}