Skip to content

Commit 15cba2e

Browse files
committed
Fix missing_const_for_fn for impl trait methods
1 parent b87f5bc commit 15cba2e

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

clippy_lints/src/missing_const_for_fn.rs

+14-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
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};
@@ -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

+9
Original file line numberDiff line numberDiff line change
@@ -59,3 +59,12 @@ trait Foo {
5959
// Don't lint in external macros (derive)
6060
#[derive(PartialEq, Eq)]
6161
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)