fixup! Add await_holding_invalid_type lint

This commit is contained in:
Lily Mara 2022-04-18 11:16:35 -07:00
parent a511072c2c
commit 7e26edce65
2 changed files with 10 additions and 5 deletions

View file

@ -146,15 +146,20 @@ declare_clippy_lint! {
///
/// ```toml
/// await-holding-invalid-types = [
/// # You can specify a type name
/// "CustomLockType",
/// # You can (optionally) specify a reason
/// { type = "OtherCustomLockType", reason = "Relies on a thread local" }
/// ]
/// ```
///
/// ```rust
/// # async fn baz() {}
/// struct CustomLockType;
/// struct OtherCustomLockType;
/// async fn foo() {
/// let _x = CustomLockType;
/// let _y = CustomLockType;
/// baz().await; // Lint violation
/// }
/// ```