Skip to content

Commit 376a8c0

Browse files
committed
Allow for_loops_over_fallibles in test that tests &mut Result as IntoIterator.
1 parent 6b818dd commit 376a8c0

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

library/core/tests/result.rs

+1
Original file line numberDiff line numberDiff line change
@@ -170,6 +170,7 @@ pub fn test_iter() {
170170
}
171171

172172
#[test]
173+
#[allow(for_loops_over_fallibles)]
173174
pub fn test_iter_mut() {
174175
let mut ok: Result<isize, &'static str> = Ok(100);
175176
for loc in ok.iter_mut() {

0 commit comments

Comments
 (0)