Rollup merge of #130343 - Fayti1703:patch-correct-async-block-lint-doc, r=compiler-errors
docs: Enable required feature for 'closure_returning_async_block' lint Failing to do this results in the lint example output complaining about the lint not existing instead of the thing the lint is supposed to be complaining about. See <https://doc.rust-lang.org/rustc/lints/listing/allowed-by-default.html#closure-returning-async-block>: 
This commit is contained in:
commit
d1701a5334
1 changed files with 1 additions and 0 deletions
|
@ -12,6 +12,7 @@ declare_lint! {
|
||||||
/// ### Example
|
/// ### Example
|
||||||
///
|
///
|
||||||
/// ```rust
|
/// ```rust
|
||||||
|
/// #![feature(async_closure)]
|
||||||
/// #![warn(closure_returning_async_block)]
|
/// #![warn(closure_returning_async_block)]
|
||||||
/// let c = |x: &str| async {};
|
/// let c = |x: &str| async {};
|
||||||
/// ```
|
/// ```
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue