Skip to content

Commit 8fbb23f

Browse files
committed
Auto merge of #5213 - JohnTitor:warm-return-ty, r=flip1995
Use generator own DefId Fixes #5207 changelog: Fix ICE in `missing_errors_doc`
2 parents 3fc2419 + 8abe436 commit 8fbb23f

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

clippy_lints/src/doc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ fn lint_for_missing_headers<'a, 'tcx>(
234234
if implements_trait(cx, ret_ty, future, &[]);
235235
if let ty::Opaque(_, subs) = ret_ty.kind;
236236
if let Some(gen) = subs.types().next();
237-
if let ty::Generator(_, subs, _) = gen.kind;
237+
if let ty::Generator(def_id, subs, _) = gen.kind;
238238
if match_type(cx, subs.as_generator().return_ty(def_id, cx.tcx), &paths::RESULT);
239239
then {
240240
span_lint(

tests/ui/crashes/ice-5207.rs

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
// edition:2018
2+
3+
// Regression test for https://github.com/rust-lang/rust-clippy/issues/5207
4+
5+
pub async fn bar<'a, T: 'a>(_: T) {}
6+
7+
fn main() {}

0 commit comments

Comments
 (0)