]> git.lizzy.rs Git - rust.git/blob - tests/ui/async-await/track-caller/async-closure-gate.stderr
Rollup merge of #107108 - sulami:issue-83968-doc-alias-typo-suggestions, r=compiler...
[rust.git] / tests / ui / async-await / track-caller / async-closure-gate.stderr
1 error[E0658]: `#[track_caller]` on closures is currently unstable
2   --> $DIR/async-closure-gate.rs:6:13
3    |
4 LL |     let _ = #[track_caller] async || {
5    |             ^^^^^^^^^^^^^^^
6    |
7    = note: see issue #87417 <https://github.com/rust-lang/rust/issues/87417> for more information
8    = help: add `#![feature(closure_track_caller)]` to the crate attributes to enable
9
10 error: aborting due to previous error
11
12 For more information about this error, try `rustc --explain E0658`.