diff options
| author | David Tolnay <dtolnay@gmail.com> | 2021-04-14 19:28:39 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-14 19:28:39 -0700 |
| commit | e9bd80f96134a3a6bb57b8d73526ae527143b20d (patch) | |
| tree | 77f5f7c19448e34badc97d6e4a2884ebafabccff | |
| parent | 28efb22745640f5a3218195da6cfbaff1696ff2e (diff) | |
| download | rust-e9bd80f96134a3a6bb57b8d73526ae527143b20d.tar.gz rust-e9bd80f96134a3a6bb57b8d73526ae527143b20d.zip | |
Requires deprecated *and* deprecated_in_future, depending on what stage is building
| -rw-r--r-- | library/std/src/lib.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index f7345bef561..e6d8892c6fc 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -456,7 +456,7 @@ pub use core::pin; #[stable(feature = "rust1", since = "1.0.0")] pub use core::ptr; #[stable(feature = "rust1", since = "1.0.0")] -#[allow(deprecated)] +#[allow(deprecated, deprecated_in_future)] pub use core::raw; #[stable(feature = "rust1", since = "1.0.0")] pub use core::result; |
