mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-01 01:23:26 +00:00
Auto merge of #5213 - JohnTitor:warm-return-ty, r=flip1995
Use generator own DefId Fixes #5207 changelog: Fix ICE in `missing_errors_doc`
This commit is contained in:
commit
8fbb23f254
@ -234,7 +234,7 @@ fn lint_for_missing_headers<'a, 'tcx>(
|
||||
if implements_trait(cx, ret_ty, future, &[]);
|
||||
if let ty::Opaque(_, subs) = ret_ty.kind;
|
||||
if let Some(gen) = subs.types().next();
|
||||
if let ty::Generator(_, subs, _) = gen.kind;
|
||||
if let ty::Generator(def_id, subs, _) = gen.kind;
|
||||
if match_type(cx, subs.as_generator().return_ty(def_id, cx.tcx), &paths::RESULT);
|
||||
then {
|
||||
span_lint(
|
||||
|
7
tests/ui/crashes/ice-5207.rs
Normal file
7
tests/ui/crashes/ice-5207.rs
Normal file
@ -0,0 +1,7 @@
|
||||
// edition:2018
|
||||
|
||||
// Regression test for https://github.com/rust-lang/rust-clippy/issues/5207
|
||||
|
||||
pub async fn bar<'a, T: 'a>(_: T) {}
|
||||
|
||||
fn main() {}
|
Loading…
Reference in New Issue
Block a user