From dc8d29be4ac405e61b6c403b0ea09809e55b8efa Mon Sep 17 00:00:00 2001 From: "Michael A. Plikk" Date: Thu, 24 May 2018 16:30:26 +0200 Subject: [PATCH] Allow unimplemented in other tests --- tests/run-pass/ice_exacte_size.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/run-pass/ice_exacte_size.rs b/tests/run-pass/ice_exacte_size.rs index 914153c64fff..d99734810f53 100644 --- a/tests/run-pass/ice_exacte_size.rs +++ b/tests/run-pass/ice_exacte_size.rs @@ -6,6 +6,7 @@ struct Foo; impl Iterator for Foo { type Item = (); + #[allow(unimplemented)] fn next(&mut self) -> Option<()> { let _ = self.len() == 0; unimplemented!()