Add tracking issue for the unwind attribute.

This commit is contained in:
Mark Rousskov 2019-02-26 12:20:38 -07:00
parent 55c173c8ae
commit f313baedba
2 changed files with 3 additions and 3 deletions

View file

@ -233,8 +233,8 @@ declare_features! (
// Allows `#[unwind(..)]`.
//
// rustc internal for rust runtime
(active, unwind_attributes, "1.4.0", None, None),
// Permits specifying whether a function should permit unwinding or abort on unwind.
(active, unwind_attributes, "1.4.0", Some(58760), None),
// Allows the use of `#[naked]` on functions.
(active, naked_functions, "1.9.0", Some(32408), None),

View file

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