Sep 02 04:39:00.585 INFO checking png-framing-0.3.1 against try#952c7dbfa2628309f557b367929ffc17af20b332 for pr-53851 Sep 02 04:39:00.585 INFO running: cargo +952c7dbfa2628309f557b367929ffc17af20b332-alt check --frozen --all --all-targets Sep 02 04:39:00.585 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-3/pr-53851/try#952c7dbfa2628309f557b367929ffc17af20b332:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53851/worker-3/try#952c7dbfa2628309f557b367929ffc17af20b332:/target:rw,Z" "-v" "/home/ec2-user/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/home/ec2-user/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=500" "-e" "CMD=cargo +952c7dbfa2628309f557b367929ffc17af20b332-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Sep 02 04:39:00.737 INFO blam! 6b7d3ce6b86337279ce6112f90f6f310d4601d5b1677caecacd1aaf554e8994a Sep 02 04:39:00.739 INFO running `"docker" "start" "-a" "6b7d3ce6b86337279ce6112f90f6f310d4601d5b1677caecacd1aaf554e8994a"` Sep 02 04:39:01.485 INFO kablam! Compiling lodepng v1.2.2 Sep 02 04:39:01.487 INFO kablam! Checking framing v0.3.5 Sep 02 04:39:02.809 INFO kablam! error: cannot infer an appropriate lifetime Sep 02 04:39:02.809 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/framing-0.3.5/src/transforms/iter.rs:10:20 Sep 02 04:39:02.809 INFO kablam! | Sep 02 04:39:02.809 INFO kablam! 6 | -> impl Iterator + ExactSizeIterator Sep 02 04:39:02.809 INFO kablam! | ------------------------------------------------------------------ this return type evaluates to the `'static` lifetime... Sep 02 04:39:02.809 INFO kablam! ... Sep 02 04:39:02.809 INFO kablam! 10 | (0..w * h).map(move |i| unsafe { Sep 02 04:39:02.809 INFO kablam! | ____________________^ Sep 02 04:39:02.809 INFO kablam! 11 | | let (x, y) = (i % w, i / w); Sep 02 04:39:02.809 INFO kablam! 12 | | (x, y, frame.pixel(i % w, i / w)) Sep 02 04:39:02.809 INFO kablam! 13 | | }) Sep 02 04:39:02.809 INFO kablam! | |_____^ ...but this borrow... Sep 02 04:39:02.809 INFO kablam! | Sep 02 04:39:02.810 INFO kablam! note: ...can't outlive the lifetime 'a as defined on the function body at 5:13 Sep 02 04:39:02.810 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/framing-0.3.5/src/transforms/iter.rs:5:13 Sep 02 04:39:02.810 INFO kablam! | Sep 02 04:39:02.810 INFO kablam! 5 | pub fn iter<'a, T: Image>(frame: &'a T) Sep 02 04:39:02.810 INFO kablam! | ^^ Sep 02 04:39:02.810 INFO kablam! help: you can add a constraint to the return type to make it last less than `'static` and match the lifetime 'a as defined on the function body at 5:13 Sep 02 04:39:02.810 INFO kablam! | Sep 02 04:39:02.810 INFO kablam! 6 | -> impl Iterator + ExactSizeIterator + 'a Sep 02 04:39:02.810 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Sep 02 04:39:02.810 INFO kablam! Sep 02 04:39:02.817 INFO kablam! error: cannot infer an appropriate lifetime Sep 02 04:39:02.817 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/framing-0.3.5/src/transforms/iter.rs:25:36 Sep 02 04:39:02.817 INFO kablam! | Sep 02 04:39:02.817 INFO kablam! 18 | -> impl ParallelIterator Sep 02 04:39:02.817 INFO kablam! | ------------------------------------------------------ this return type evaluates to the `'static` lifetime... Sep 02 04:39:02.817 INFO kablam! ... Sep 02 04:39:02.817 INFO kablam! 25 | (0..w * h).into_par_iter().map(move |i| unsafe { Sep 02 04:39:02.817 INFO kablam! | ____________________________________^ Sep 02 04:39:02.817 INFO kablam! 26 | | let (x, y) = (i % w, i / w); Sep 02 04:39:02.817 INFO kablam! 27 | | (x, y, frame.pixel(i % w, i / w)) Sep 02 04:39:02.817 INFO kablam! 28 | | }) Sep 02 04:39:02.817 INFO kablam! | |_____^ ...but this borrow... Sep 02 04:39:02.818 INFO kablam! | Sep 02 04:39:02.818 INFO kablam! note: ...can't outlive the lifetime 'a as defined on the function body at 17:17 Sep 02 04:39:02.818 INFO kablam! --> /cargo-home/registry/src/github.com-1ecc6299db9ec823/framing-0.3.5/src/transforms/iter.rs:17:17 Sep 02 04:39:02.818 INFO kablam! | Sep 02 04:39:02.818 INFO kablam! 17 | pub fn par_iter<'a, T>(frame: &'a T) Sep 02 04:39:02.818 INFO kablam! | ^^ Sep 02 04:39:02.818 INFO kablam! help: you can add a constraint to the return type to make it last less than `'static` and match the lifetime 'a as defined on the function body at 17:17 Sep 02 04:39:02.818 INFO kablam! | Sep 02 04:39:02.818 INFO kablam! 18 | -> impl ParallelIterator + 'a Sep 02 04:39:02.818 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Sep 02 04:39:02.818 INFO kablam! Sep 02 04:39:02.829 INFO kablam! error: aborting due to 2 previous errors Sep 02 04:39:02.829 INFO kablam! Sep 02 04:39:02.839 INFO kablam! error: Could not compile `framing`. Sep 02 04:39:02.839 INFO kablam! warning: build failed, waiting for other jobs to finish... Sep 02 04:39:03.016 INFO kablam! error: build failed Sep 02 04:39:03.017 INFO kablam! su: No module specific data is present Sep 02 04:39:03.467 INFO running `"docker" "rm" "-f" "6b7d3ce6b86337279ce6112f90f6f310d4601d5b1677caecacd1aaf554e8994a"` Sep 02 04:39:03.562 INFO blam! 6b7d3ce6b86337279ce6112f90f6f310d4601d5b1677caecacd1aaf554e8994a