We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 594a5f1 commit 5f191ceCopy full SHA for 5f191ce
clippy_lints/src/doc/needless_doctest_main.rs
@@ -69,7 +69,7 @@ pub fn check(
69
if !ignore {
70
get_test_spans(&item, &mut test_attr_spans);
71
}
72
- let is_async = matches!(sig.header.coro_kind, CoroutineKind::Async { .. });
+ let is_async = matches!(sig.header.coro_kind, Some(CoroutineKind::Async { .. }));
73
let returns_nothing = match &sig.decl.output {
74
FnRetTy::Default(..) => true,
75
FnRetTy::Ty(ty) if ty.kind.is_unit() => true,
0 commit comments