2022-11-23 21:39:47 -06:00
|
|
|
warning: `#[track_caller]` on async functions is a no-op
|
2023-05-30 16:32:29 -05:00
|
|
|
--> $DIR/panic-track-caller.rs:53:1
|
2022-11-23 21:39:47 -06:00
|
|
|
|
|
|
|
|
LL | #[track_caller]
|
2022-12-20 21:13:28 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2023-05-30 16:32:29 -05:00
|
|
|
...
|
2022-11-23 21:39:47 -06:00
|
|
|
LL | / async fn bar_track_caller() {
|
|
|
|
LL | | panic!()
|
|
|
|
LL | | }
|
|
|
|
| |_- this function will not propagate the caller location
|
|
|
|
|
|
2023-05-30 16:32:29 -05:00
|
|
|
= note: see issue #110011 <https://github.com/rust-lang/rust/issues/110011> for more information
|
|
|
|
= help: add `#![feature(async_fn_track_caller)]` to the crate attributes to enable
|
2022-11-23 21:39:47 -06:00
|
|
|
= note: `#[warn(ungated_async_fn_track_caller)]` on by default
|
|
|
|
|
2022-12-07 14:13:22 -06:00
|
|
|
warning: `#[track_caller]` on async functions is a no-op
|
2023-05-30 16:32:29 -05:00
|
|
|
--> $DIR/panic-track-caller.rs:67:5
|
2022-12-07 14:13:22 -06:00
|
|
|
|
|
|
|
|
LL | #[track_caller]
|
2022-12-20 21:13:28 -06:00
|
|
|
| ^^^^^^^^^^^^^^^
|
2023-05-30 16:32:29 -05:00
|
|
|
...
|
2022-12-07 14:13:22 -06:00
|
|
|
LL | / async fn bar_assoc() {
|
|
|
|
LL | | panic!();
|
|
|
|
LL | | }
|
|
|
|
| |_____- this function will not propagate the caller location
|
2022-12-20 21:13:28 -06:00
|
|
|
|
|
2023-05-30 16:32:29 -05:00
|
|
|
= note: see issue #110011 <https://github.com/rust-lang/rust/issues/110011> for more information
|
|
|
|
= help: add `#![feature(async_fn_track_caller)]` to the crate attributes to enable
|
2022-12-07 14:13:22 -06:00
|
|
|
|
|
|
|
warning: 2 warnings emitted
|
2022-11-23 21:39:47 -06:00
|
|
|
|