From 0437fd69c1de4c1f97d8cf449e6d510168cb8838 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Fri, 7 Sep 2018 15:40:11 -0700 Subject: [PATCH] Add #[allow(const_err)] on test offset_index_out_of_bounds The compiler now raises a deny-by-default `const_err` lint on this test, which doesn't let it get to the expected `#[should_panic]`. We can allow that lint in order to let the test hit the error it wants. --- src/offset_of.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/offset_of.rs b/src/offset_of.rs index 61486577b061..1c981c288a2e 100644 --- a/src/offset_of.rs +++ b/src/offset_of.rs @@ -105,6 +105,7 @@ mod tests { #[test] #[should_panic] + #[allow(const_err)] fn offset_index_out_of_bounds() { offset_of!(Foo, b[4]); } -- 2.17.1