2023-01-09 23:21:31 +13:00
|
|
|
error[E0734]: stability attributes may not be used outside of the standard library
|
2024-05-29 23:36:11 +03:00
|
|
|
--> $DIR/issue-106589.rs:3:1
|
2023-01-09 23:21:31 +13:00
|
|
|
|
|
2024-05-29 23:36:11 +03:00
|
|
|
LL | #![stable(feature = "foo", since = "1.0.0")]
|
2023-01-09 23:21:31 +13:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error[E0734]: stability attributes may not be used outside of the standard library
|
2024-05-29 23:36:11 +03:00
|
|
|
--> $DIR/issue-106589.rs:6:1
|
2023-01-09 23:21:31 +13:00
|
|
|
|
|
2024-05-29 23:36:11 +03:00
|
|
|
LL | #[unstable(feature = "foo", issue = "none")]
|
2023-01-09 23:21:31 +13:00
|
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
|
|
|
|
For more information about this error, try `rustc --explain E0734`.
|