aboutsummaryrefslogtreecommitdiff
path: root/tests/repr_packed.rs
diff options
context:
space:
mode:
authorJoel Galenson <jgalenson@google.com>2021-05-27 16:11:54 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2021-05-27 16:11:54 +0000
commitfcb335e6ca1967ccc95468d5c8ea80541c14d9ef (patch)
treea2808291a9d00789d7f23e0e6bc9e133aace307a /tests/repr_packed.rs
parent4eafa0cc0e589d8dd142ef7d2c30718b0f9c0e5b (diff)
parentb845c5fd84f50f28cd5cce350eac405562744e3b (diff)
downloadpin-project-fcb335e6ca1967ccc95468d5c8ea80541c14d9ef.tar.gz
Upgrade rust/crates/pin-project to 1.0.7 am: c95dc51644 am: b845c5fd84
Original change: https://android-review.googlesource.com/c/platform/external/rust/crates/pin-project/+/1713049 Change-Id: Iffa76ddb8d7768585214b1b10204d6f61a40d420
Diffstat (limited to 'tests/repr_packed.rs')
-rw-r--r--tests/repr_packed.rs5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/repr_packed.rs b/tests/repr_packed.rs
index a0d8bdc..e87aabf 100644
--- a/tests/repr_packed.rs
+++ b/tests/repr_packed.rs
@@ -1,5 +1,8 @@
#![warn(rust_2018_idioms, single_use_lifetimes)]
-#![forbid(safe_packed_borrows)]
+// unaligned_references did not exist in older compilers and safe_packed_borrows was removed in the latest compilers.
+// https://github.com/rust-lang/rust/pull/82525
+#![allow(unknown_lints, renamed_and_removed_lints)]
+#![forbid(unaligned_references, safe_packed_borrows)]
use std::cell::Cell;