mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-18 02:38:28 +00:00
fixup! Add await_holding_invalid_type
lint
This commit is contained in:
parent
ee3ebb35f4
commit
a511072c2c
1 changed files with 3 additions and 6 deletions
|
@ -144,20 +144,17 @@ declare_clippy_lint! {
|
|||
///
|
||||
/// ### Example
|
||||
///
|
||||
/// Strings are, of course, safe to hold across await points. This example
|
||||
/// exists only to show how this lint might be configured for third-party
|
||||
/// crates.
|
||||
///
|
||||
/// ```toml
|
||||
/// await-holding-invalid-types = [
|
||||
/// "std::string::String",
|
||||
/// "CustomLockType",
|
||||
/// ]
|
||||
/// ```
|
||||
///
|
||||
/// ```rust
|
||||
/// # async fn baz() {}
|
||||
/// struct CustomLockType;
|
||||
/// async fn foo() {
|
||||
/// let _x = String::from("hello!");
|
||||
/// let _x = CustomLockType;
|
||||
/// baz().await; // Lint violation
|
||||
/// }
|
||||
/// ```
|
||||
|
|
Loading…
Reference in a new issue