Skip to content

Commit a8f61e7

Browse files
committed
Auto merge of #3844 - phansch:const_fn_external_macro, r=oli-obk
Fix two missing_const_for_fn false positives Fixes #3841 * Fixes false positive in external macros * Fixes false positive when implement trait methods
2 parents caccf8b + 15cba2e commit a8f61e7

File tree

2 files changed

+29
-3
lines changed

2 files changed

+29
-3
lines changed

clippy_lints/src/missing_const_for_fn.rs

+16-3
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
use crate::utils::{is_entrypoint_fn, span_lint};
2+
use if_chain::if_chain;
23
use rustc::hir;
34
use rustc::hir::intravisit::FnKind;
45
use rustc::hir::{Body, Constness, FnDecl, HirId};
5-
use rustc::lint::{LateContext, LateLintPass, LintArray, LintPass};
6+
use rustc::lint::{in_external_macro, LateContext, LateLintPass, LintArray, LintPass};
67
use rustc::{declare_tool_lint, lint_array};
78
use rustc_mir::transform::qualify_min_const_fn::is_min_const_fn;
89
use syntax_pos::Span;
@@ -82,7 +83,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingConstForFn {
8283
) {
8384
let def_id = cx.tcx.hir().local_def_id_from_hir_id(hir_id);
8485

85-
if is_entrypoint_fn(cx, def_id) {
86+
if in_external_macro(cx.tcx.sess, span) || is_entrypoint_fn(cx, def_id) {
8687
return;
8788
}
8889

@@ -95,7 +96,7 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingConstForFn {
9596
}
9697
},
9798
FnKind::Method(_, sig, ..) => {
98-
if already_const(sig.header) {
99+
if is_trait_method(cx, hir_id) || already_const(sig.header) {
99100
return;
100101
}
101102
},
@@ -114,6 +115,18 @@ impl<'a, 'tcx> LateLintPass<'a, 'tcx> for MissingConstForFn {
114115
}
115116
}
116117

118+
fn is_trait_method(cx: &LateContext<'_, '_>, hir_id: HirId) -> bool {
119+
// Get the implemented trait for the current function
120+
let parent_impl = cx.tcx.hir().get_parent_item(hir_id);
121+
if_chain! {
122+
if parent_impl != hir::CRATE_HIR_ID;
123+
if let hir::Node::Item(item) = cx.tcx.hir().get_by_hir_id(parent_impl);
124+
if let hir::ItemKind::Impl(_, _, _, _, Some(_trait_ref), _, _) = &item.node;
125+
then { return true; }
126+
}
127+
false
128+
}
129+
117130
// We don't have to lint on something that's already `const`
118131
fn already_const(header: hir::FnHeader) -> bool {
119132
header.constness == Constness::Const

tests/ui/missing_const_for_fn/cant_be_const.rs

+13
Original file line numberDiff line numberDiff line change
@@ -55,3 +55,16 @@ trait Foo {
5555
33
5656
}
5757
}
58+
59+
// Don't lint in external macros (derive)
60+
#[derive(PartialEq, Eq)]
61+
struct Point(isize, isize);
62+
63+
impl std::ops::Add for Point {
64+
type Output = Self;
65+
66+
// Don't lint in trait impls of derived methods
67+
fn add(self, other: Self) -> Self {
68+
Point(self.0 + other.0, self.1 + other.1)
69+
}
70+
}

0 commit comments

Comments
 (0)