Skip to content

Commit f313bae

Browse files
Add tracking issue for the unwind attribute.
1 parent 55c173c commit f313bae

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/libsyntax/feature_gate.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -233,8 +233,8 @@ declare_features! (
233233

234234
// Allows `#[unwind(..)]`.
235235
//
236-
// rustc internal for rust runtime
237-
(active, unwind_attributes, "1.4.0", None, None),
236+
// Permits specifying whether a function should permit unwinding or abort on unwind.
237+
(active, unwind_attributes, "1.4.0", Some(58760), None),
238238

239239
// Allows the use of `#[naked]` on functions.
240240
(active, naked_functions, "1.9.0", Some(32408), None),

src/test/ui/feature-gates/feature-gate-unwind-attributes.stderr

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
error[E0658]: #[unwind] is experimental
1+
error[E0658]: #[unwind] is experimental (see issue #58760)
22
--> $DIR/feature-gate-unwind-attributes.rs:11:5
33
|
44
LL | #[unwind(allowed)] //~ ERROR #[unwind] is experimental

0 commit comments

Comments
 (0)