Skip to content

Commit 2511e37

Browse files
authored
Unrolled build for rust-lang#130343
Rollup merge of rust-lang#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>: ![image](https://github.com/user-attachments/assets/78bae16f-3fb6-4d6d-b8aa-768b477cd187)
2 parents e7386b3 + 14285e9 commit 2511e37

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

compiler/rustc_lint/src/async_closures.rs

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ declare_lint! {
1212
/// ### Example
1313
///
1414
/// ```rust
15+
/// #![feature(async_closure)]
1516
/// #![warn(closure_returning_async_block)]
1617
/// let c = |x: &str| async {};
1718
/// ```

0 commit comments

Comments
 (0)