Skip to content

Commit ccbba0a

Browse files
committedDec 21, 2022
Update track_caller tests; run fmt
1 parent 9650a41 commit ccbba0a

File tree

4 files changed

+9
-20
lines changed

4 files changed

+9
-20
lines changed
 

‎compiler/rustc_ast_lowering/src/expr.rs

+2-5
Original file line numberDiff line numberDiff line change
@@ -657,11 +657,8 @@ impl<'hir> LoweringContext<'_, 'hir> {
657657
};
658658

659659
let hir_id = self.lower_node_id(closure_node_id);
660-
let unstable_span = self.mark_span_with_reason(
661-
DesugaringKind::Async,
662-
span,
663-
self.allow_gen_future.clone(),
664-
);
660+
let unstable_span =
661+
self.mark_span_with_reason(DesugaringKind::Async, span, self.allow_gen_future.clone());
665662

666663
if self.tcx.features().closure_track_caller
667664
&& let Some(attrs) = self.attrs.get(&outer_hir_id.local_id)

‎src/test/ui/async-await/track-caller/async-closure-gate.rs

-1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,5 @@
55
fn main() {
66
let _ = #[track_caller] async || {
77
//~^ ERROR `#[track_caller]` on closures is currently unstable [E0658]
8-
//~| ERROR `#[track_caller]` on closures is currently unstable [E0658]
98
};
109
}

‎src/test/ui/async-await/track-caller/async-closure-gate.stderr

+1-14
Original file line numberDiff line numberDiff line change
@@ -7,19 +7,6 @@ LL | let _ = #[track_caller] async || {
77
= note: see issue #87417 <https://github.com/rust-lang/rust/issues/87417> for more information
88
= help: add `#![feature(closure_track_caller)]` to the crate attributes to enable
99

10-
error[E0658]: `#[track_caller]` on closures is currently unstable
11-
--> $DIR/async-closure-gate.rs:6:38
12-
|
13-
LL | let _ = #[track_caller] async || {
14-
| ______________________________________^
15-
LL | |
16-
LL | |
17-
LL | | };
18-
| |_____^
19-
|
20-
= note: see issue #87417 <https://github.com/rust-lang/rust/issues/87417> for more information
21-
= help: add `#![feature(closure_track_caller)]` to the crate attributes to enable
22-
23-
error: aborting due to 2 previous errors
10+
error: aborting due to previous error
2411

2512
For more information about this error, try `rustc --explain E0658`.

‎src/test/ui/async-await/track-caller/panic-track-caller.rs

+6
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,9 @@ async fn foo_assoc() {
6969
Foo::bar_assoc().await
7070
}
7171

72+
// Since compilation is expected to fail for this fn when using
73+
// `nofeat`, we test that separately in `async-closure-gate.rs`
74+
#[cfg(feat)]
7275
async fn foo_closure() {
7376
let c = #[track_caller] async || {
7477
panic!();
@@ -104,4 +107,7 @@ fn main() {
104107
assert_eq!(panicked_at(|| block_on(foo_assoc())), 69);
105108
#[cfg(nofeat)]
106109
assert_eq!(panicked_at(|| block_on(foo_assoc())), 64);
110+
111+
#[cfg(feat)]
112+
assert_eq!(panicked_at(|| block_on(foo_closure())), 79);
107113
}

0 commit comments

Comments
 (0)
Please sign in to comment.