Sep 06 02:27:45.751 INFO checking plotter-0.1.0 against try#51ff957df5095d92d1d3d4682207ee8b7ad408a8 for pr-53854 Sep 06 02:27:45.751 INFO running: cargo +51ff957df5095d92d1d3d4682207ee8b7ad408a8-alt check --frozen --all --all-targets Sep 06 02:27:45.751 INFO running `"docker" "create" "-v" "/home/ec2-user/crater/./work/local/test-source/worker-5/pr-53854/try#51ff957df5095d92d1d3d4682207ee8b7ad408a8:/source:ro,Z" "-v" "/home/ec2-user/crater/./work/local/target-dirs/pr-53854/worker-5/try#51ff957df5095d92d1d3d4682207ee8b7ad408a8:/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=1000" "-e" "CMD=cargo +51ff957df5095d92d1d3d4682207ee8b7ad408a8-alt check --frozen --all --all-targets" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-m" "2G" "crater"` Sep 06 02:27:45.986 INFO blam! c2c4f9f7fcbade531d2968d7d9953c75274bd89453bd13c253d962189febdca6 Sep 06 02:27:45.988 INFO running `"docker" "start" "-a" "c2c4f9f7fcbade531d2968d7d9953c75274bd89453bd13c253d962189febdca6"` Sep 06 02:27:47.342 INFO kablam! usermod: no changes Sep 06 02:27:47.360 INFO kablam! Checking plotter v0.1.0 (file:///source) Sep 06 02:27:47.600 INFO kablam! warning: unused variable: `name` Sep 06 02:27:47.601 INFO kablam! --> src/plotter/mod.rs:34:42 Sep 06 02:27:47.601 INFO kablam! | Sep 06 02:27:47.601 INFO kablam! 34 | pub fn plot(&self, size: (u32, u32), name: &'static str, port: String, options: PlotOptions) { Sep 06 02:27:47.601 INFO kablam! | ^^^^ help: consider using `_name` instead Sep 06 02:27:47.601 INFO kablam! | Sep 06 02:27:47.601 INFO kablam! = note: #[warn(unused_variables)] on by default Sep 06 02:27:47.601 INFO kablam! Sep 06 02:27:47.655 INFO kablam! warning: unused variable: `name` Sep 06 02:27:47.656 INFO kablam! --> src/plotter/mod.rs:34:42 Sep 06 02:27:47.656 INFO kablam! | Sep 06 02:27:47.656 INFO kablam! 34 | pub fn plot(&self, size: (u32, u32), name: &'static str, port: String, options: PlotOptions) { Sep 06 02:27:47.656 INFO kablam! | ^^^^ help: consider using `_name` instead Sep 06 02:27:47.656 INFO kablam! | Sep 06 02:27:47.656 INFO kablam! = note: #[warn(unused_variables)] on by default Sep 06 02:27:47.656 INFO kablam! Sep 06 02:27:47.837 INFO kablam! error[E0254]: the name `plotter` is defined multiple times Sep 06 02:27:47.837 INFO kablam! --> examples/basic.rs:3:5 Sep 06 02:27:47.837 INFO kablam! | Sep 06 02:27:47.837 INFO kablam! 1 | extern crate plotter; Sep 06 02:27:47.837 INFO kablam! | --------------------- previous import of the extern crate `plotter` here Sep 06 02:27:47.837 INFO kablam! 2 | Sep 06 02:27:47.837 INFO kablam! 3 | use plotter::plotter; Sep 06 02:27:47.837 INFO kablam! | ^^^^^^^^^^^^^^^^ `plotter` reimported here Sep 06 02:27:47.837 INFO kablam! | Sep 06 02:27:47.837 INFO kablam! = note: `plotter` must be defined only once in the type namespace of this module Sep 06 02:27:47.837 INFO kablam! help: You can use `as` to change the binding name of the import Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 3 | use plotter::plotter as other_plotter; Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.838 INFO kablam! error[E0433]: failed to resolve. Could not find `Dataset` in `plotter` Sep 06 02:27:47.838 INFO kablam! --> examples/basic.rs:8:29 Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 8 | let mut data = plotter::Dataset::from_fn(&func, (-10.0, 10.0), 1.0, None); Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^ Could not find `Dataset` in `plotter` Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.838 INFO kablam! error[E0433]: failed to resolve. Could not find `Dataset` in `plotter` Sep 06 02:27:47.838 INFO kablam! --> examples/basic.rs:9:26 Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 9 | let other = plotter::Dataset::from_fn(&o, (-10.0, 10.0), 1.0, None); Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^ Could not find `Dataset` in `plotter` Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.838 INFO kablam! error[E0433]: failed to resolve. Could not find `Plotter` in `plotter` Sep 06 02:27:47.838 INFO kablam! --> examples/basic.rs:11:24 Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 11 | let app = plotter::Plotter::new(data); Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^ Could not find `Plotter` in `plotter` Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.838 INFO kablam! error[E0433]: failed to resolve. Could not find `PlotOptions` in `plotter` Sep 06 02:27:47.838 INFO kablam! --> examples/basic.rs:12:24 Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 12 | let opt = plotter::PlotOptions::new() Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^^^^^ Could not find `PlotOptions` in `plotter` Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.838 INFO kablam! warning: unused import: `plotter::plotter` Sep 06 02:27:47.838 INFO kablam! --> examples/basic.rs:3:5 Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! 3 | use plotter::plotter; Sep 06 02:27:47.838 INFO kablam! | ^^^^^^^^^^^^^^^^ Sep 06 02:27:47.838 INFO kablam! | Sep 06 02:27:47.838 INFO kablam! = note: #[warn(unused_imports)] on by default Sep 06 02:27:47.838 INFO kablam! Sep 06 02:27:47.848 INFO kablam! error: aborting due to 5 previous errors Sep 06 02:27:47.848 INFO kablam! Sep 06 02:27:47.848 INFO kablam! Some errors occurred: E0254, E0433. Sep 06 02:27:47.848 INFO kablam! For more information about an error, try `rustc --explain E0254`. Sep 06 02:27:47.854 INFO kablam! error: Could not compile `plotter`. Sep 06 02:27:47.854 INFO kablam! Sep 06 02:27:47.854 INFO kablam! To learn more, run the command again with --verbose. Sep 06 02:27:47.855 INFO kablam! su: No module specific data is present Sep 06 02:27:48.461 INFO running `"docker" "rm" "-f" "c2c4f9f7fcbade531d2968d7d9953c75274bd89453bd13c253d962189febdca6"` Sep 06 02:27:48.544 INFO blam! c2c4f9f7fcbade531d2968d7d9953c75274bd89453bd13c253d962189febdca6