mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-10 07:04:18 +00:00
Auto merge of #13382 - c410-f3r:blah, r=y21
[`missing_panics_doc`] Fix #13381 Fix #13381 Makes `missing_panics_doc` act like other "panicking" lints (`unwrap_used`, `panic`, etc) in constant environments. changelog: Ignore `missing_panics_doc` in constant environments
This commit is contained in:
commit
903293b199
2 changed files with 16 additions and 5 deletions
|
@ -1,8 +1,8 @@
|
|||
use clippy_utils::diagnostics::span_lint_and_then;
|
||||
use clippy_utils::macros::root_macro_call_first_node;
|
||||
use clippy_utils::return_ty;
|
||||
use clippy_utils::ty::is_type_diagnostic_item;
|
||||
use clippy_utils::visitors::{for_each_expr, Descend};
|
||||
use clippy_utils::{is_inside_always_const_context, return_ty};
|
||||
use core::ops::ControlFlow;
|
||||
use rustc_hir as hir;
|
||||
use rustc_hir::intravisit::FnKind;
|
||||
|
@ -68,10 +68,12 @@ fn lint_impl_body<'tcx>(cx: &LateContext<'tcx>, impl_span: Span, body: &'tcx hir
|
|||
let Some(macro_call) = root_macro_call_first_node(cx, e) else {
|
||||
return ControlFlow::Continue(Descend::Yes);
|
||||
};
|
||||
if matches!(
|
||||
cx.tcx.item_name(macro_call.def_id).as_str(),
|
||||
"panic" | "assert" | "assert_eq" | "assert_ne"
|
||||
) {
|
||||
if !is_inside_always_const_context(cx.tcx, e.hir_id)
|
||||
&& matches!(
|
||||
cx.tcx.item_name(macro_call.def_id).as_str(),
|
||||
"panic" | "assert" | "assert_eq" | "assert_ne"
|
||||
)
|
||||
{
|
||||
panics.push(macro_call.span);
|
||||
ControlFlow::Continue(Descend::No)
|
||||
} else {
|
||||
|
|
|
@ -71,6 +71,15 @@ fn function_result_with_custom_todo() -> Result<bool, String> // should not emit
|
|||
Ok(true)
|
||||
}
|
||||
|
||||
fn issue_13381<const N: usize>() -> Result<(), String> {
|
||||
const {
|
||||
if N == 0 {
|
||||
panic!();
|
||||
}
|
||||
}
|
||||
Ok(())
|
||||
}
|
||||
|
||||
fn main() -> Result<(), String> {
|
||||
todo!("finish main method");
|
||||
Ok(())
|
||||
|
|
Loading…
Reference in a new issue