Oct 21 19:46:02.081 INFO checking andreaseg/rcalc against master#155510e377ae2a8d8ee0dad1a5f809c9062a5526 for pr-55192 Oct 21 19:46:02.081 INFO running `"docker" "create" "-v" "/mnt/big/crater/./work/local/target-dirs/pr-55192/worker-7/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/target:rw,Z" "-v" "/mnt/big/crater/./work/local/test-source/worker-7/pr-55192/master#155510e377ae2a8d8ee0dad1a5f809c9062a5526:/source:ro,Z" "-v" "/mnt/big/crater/./work/local/cargo-home:/cargo-home:ro,Z" "-v" "/mnt/big/crater/./work/local/rustup-home:/rustup-home:ro,Z" "-e" "USER_ID=1000" "-e" "SOURCE_DIR=/source" "-e" "USER_ID=1000" "-e" "CMD=cargo +155510e377ae2a8d8ee0dad1a5f809c9062a5526-alt check --frozen --all --all-targets" "-e" "CARGO_TARGET_DIR=/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/cargo-home" "-e" "RUSTUP_HOME=/rustup-home" "-m" "1536M" "--network" "none" "crater"` Oct 21 19:46:02.556 INFO blam! e1f6084f3d79e9c95d8eb6801ef80e7859367ea9ea1f4928cdd709298fb2f8ce Oct 21 19:46:02.565 INFO running `"docker" "start" "-a" "e1f6084f3d79e9c95d8eb6801ef80e7859367ea9ea1f4928cdd709298fb2f8ce"` Oct 21 19:46:04.188 INFO kablam! usermod: no changes Oct 21 19:46:04.256 INFO kablam! Checking libc v0.2.41 Oct 21 19:46:05.881 INFO kablam! Checking memchr v2.0.1 Oct 21 19:46:06.436 INFO kablam! Checking aho-corasick v0.6.4 Oct 21 19:46:07.316 INFO kablam! Checking regex v0.2.11 Oct 21 19:46:10.117 INFO kablam! Checking rcalc v0.1.0 (/source) Oct 21 19:46:11.520 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.520 INFO kablam! --> src/parser.rs:221:39 Oct 21 19:46:11.520 INFO kablam! | Oct 21 19:46:11.520 INFO kablam! 221 | parse(::scanner::tokenize("1 + 2".to_string())), Oct 21 19:46:11.520 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.521 INFO kablam! | | Oct 21 19:46:11.521 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.521 INFO kablam! | help: consider borrowing here: `&"1 + 2".to_string()` Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.521 INFO kablam! found type `std::string::String` Oct 21 19:46:11.521 INFO kablam! Oct 21 19:46:11.521 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.521 INFO kablam! --> src/parser.rs:229:39 Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! 229 | parse(::scanner::tokenize("1 * 2".to_string())), Oct 21 19:46:11.521 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.521 INFO kablam! | | Oct 21 19:46:11.521 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.521 INFO kablam! | help: consider borrowing here: `&"1 * 2".to_string()` Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.521 INFO kablam! found type `std::string::String` Oct 21 19:46:11.521 INFO kablam! Oct 21 19:46:11.521 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.521 INFO kablam! --> src/parser.rs:237:39 Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! 237 | parse(::scanner::tokenize("1 / 2".to_string())), Oct 21 19:46:11.521 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.521 INFO kablam! | | Oct 21 19:46:11.521 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.521 INFO kablam! | help: consider borrowing here: `&"1 / 2".to_string()` Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.521 INFO kablam! found type `std::string::String` Oct 21 19:46:11.521 INFO kablam! Oct 21 19:46:11.521 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.521 INFO kablam! --> src/parser.rs:245:39 Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! 245 | parse(::scanner::tokenize("1 - 2".to_string())), Oct 21 19:46:11.521 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.521 INFO kablam! | | Oct 21 19:46:11.521 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.521 INFO kablam! | help: consider borrowing here: `&"1 - 2".to_string()` Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.521 INFO kablam! found type `std::string::String` Oct 21 19:46:11.521 INFO kablam! Oct 21 19:46:11.521 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.521 INFO kablam! --> src/parser.rs:253:39 Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! 253 | parse(::scanner::tokenize("1 ^ 2".to_string())), Oct 21 19:46:11.521 INFO kablam! | ^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.521 INFO kablam! | | Oct 21 19:46:11.521 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.521 INFO kablam! | help: consider borrowing here: `&"1 ^ 2".to_string()` Oct 21 19:46:11.521 INFO kablam! | Oct 21 19:46:11.521 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.521 INFO kablam! found type `std::string::String` Oct 21 19:46:11.521 INFO kablam! Oct 21 19:46:11.528 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.528 INFO kablam! --> src/parser.rs:265:39 Oct 21 19:46:11.528 INFO kablam! | Oct 21 19:46:11.528 INFO kablam! 265 | parse(::scanner::tokenize("(1)".to_string())), Oct 21 19:46:11.528 INFO kablam! | ^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.528 INFO kablam! | | Oct 21 19:46:11.528 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.528 INFO kablam! | help: consider borrowing here: `&"(1)".to_string()` Oct 21 19:46:11.528 INFO kablam! | Oct 21 19:46:11.528 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.528 INFO kablam! found type `std::string::String` Oct 21 19:46:11.528 INFO kablam! Oct 21 19:46:11.528 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.528 INFO kablam! --> src/parser.rs:273:39 Oct 21 19:46:11.528 INFO kablam! | Oct 21 19:46:11.528 INFO kablam! 273 | parse(::scanner::tokenize("(1) + (2)".to_string())), Oct 21 19:46:11.528 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.528 INFO kablam! | | Oct 21 19:46:11.528 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.528 INFO kablam! | help: consider borrowing here: `&"(1) + (2)".to_string()` Oct 21 19:46:11.528 INFO kablam! | Oct 21 19:46:11.528 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.528 INFO kablam! found type `std::string::String` Oct 21 19:46:11.528 INFO kablam! Oct 21 19:46:11.528 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.529 INFO kablam! --> src/parser.rs:285:39 Oct 21 19:46:11.529 INFO kablam! | Oct 21 19:46:11.529 INFO kablam! 285 | parse(::scanner::tokenize("1 + 2 * 3".to_string())), Oct 21 19:46:11.529 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.529 INFO kablam! | | Oct 21 19:46:11.529 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.529 INFO kablam! | help: consider borrowing here: `&"1 + 2 * 3".to_string()` Oct 21 19:46:11.529 INFO kablam! | Oct 21 19:46:11.529 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.529 INFO kablam! found type `std::string::String` Oct 21 19:46:11.529 INFO kablam! Oct 21 19:46:11.529 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.529 INFO kablam! --> src/parser.rs:298:39 Oct 21 19:46:11.529 INFO kablam! | Oct 21 19:46:11.529 INFO kablam! 298 | parse(::scanner::tokenize("1 * 2 + 3".to_string())), Oct 21 19:46:11.529 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.529 INFO kablam! | | Oct 21 19:46:11.529 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.529 INFO kablam! | help: consider borrowing here: `&"1 * 2 + 3".to_string()` Oct 21 19:46:11.529 INFO kablam! | Oct 21 19:46:11.529 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.529 INFO kablam! found type `std::string::String` Oct 21 19:46:11.529 INFO kablam! Oct 21 19:46:11.548 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.548 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.548 INFO kablam! | Oct 21 19:46:11.548 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.548 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.548 INFO kablam! | | Oct 21 19:46:11.548 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.548 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.548 INFO kablam! ... Oct 21 19:46:11.548 INFO kablam! 93 | / test_tokenizer!( Oct 21 19:46:11.548 INFO kablam! 94 | | number, Oct 21 19:46:11.548 INFO kablam! 95 | | "2", Oct 21 19:46:11.548 INFO kablam! 96 | | Token::Number(_), Oct 21 19:46:11.548 INFO kablam! 97 | | "Tokenizer does not recognize numbers" Oct 21 19:46:11.548 INFO kablam! 98 | | ); Oct 21 19:46:11.548 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.548 INFO kablam! | Oct 21 19:46:11.548 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.549 INFO kablam! found type `std::string::String` Oct 21 19:46:11.549 INFO kablam! Oct 21 19:46:11.549 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.549 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.549 INFO kablam! | Oct 21 19:46:11.549 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.549 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.549 INFO kablam! | | Oct 21 19:46:11.549 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.549 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.549 INFO kablam! ... Oct 21 19:46:11.549 INFO kablam! 99 | / test_tokenizer!( Oct 21 19:46:11.549 INFO kablam! 100 | | lpar, Oct 21 19:46:11.549 INFO kablam! 101 | | "(", Oct 21 19:46:11.549 INFO kablam! 102 | | Token::LeftPar, Oct 21 19:46:11.549 INFO kablam! 103 | | "Tokenizer does not recognize '('" Oct 21 19:46:11.549 INFO kablam! 104 | | ); Oct 21 19:46:11.549 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.549 INFO kablam! | Oct 21 19:46:11.549 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.549 INFO kablam! found type `std::string::String` Oct 21 19:46:11.549 INFO kablam! Oct 21 19:46:11.549 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.549 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.549 INFO kablam! | Oct 21 19:46:11.549 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.549 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.549 INFO kablam! | | Oct 21 19:46:11.549 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.549 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.549 INFO kablam! ... Oct 21 19:46:11.549 INFO kablam! 105 | / test_tokenizer!( Oct 21 19:46:11.549 INFO kablam! 106 | | rpar, Oct 21 19:46:11.549 INFO kablam! 107 | | ")", Oct 21 19:46:11.549 INFO kablam! 108 | | Token::RightPar, Oct 21 19:46:11.549 INFO kablam! 109 | | "Tokenizer does not recognize ')'" Oct 21 19:46:11.549 INFO kablam! 110 | | ); Oct 21 19:46:11.549 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.549 INFO kablam! | Oct 21 19:46:11.549 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.549 INFO kablam! found type `std::string::String` Oct 21 19:46:11.549 INFO kablam! Oct 21 19:46:11.556 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.556 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.556 INFO kablam! | Oct 21 19:46:11.556 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.556 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.556 INFO kablam! | | Oct 21 19:46:11.556 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.556 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.556 INFO kablam! ... Oct 21 19:46:11.556 INFO kablam! 111 | / test_tokenizer!( Oct 21 19:46:11.556 INFO kablam! 112 | | operator, Oct 21 19:46:11.556 INFO kablam! 113 | | "+-*/^", Oct 21 19:46:11.556 INFO kablam! 114 | | Token::Operator(_), Oct 21 19:46:11.556 INFO kablam! 115 | | "Tokenizer does not recognize operators" Oct 21 19:46:11.557 INFO kablam! 116 | | ); Oct 21 19:46:11.557 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.557 INFO kablam! | Oct 21 19:46:11.557 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.557 INFO kablam! found type `std::string::String` Oct 21 19:46:11.557 INFO kablam! Oct 21 19:46:11.557 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.557 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.557 INFO kablam! | Oct 21 19:46:11.557 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.557 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.557 INFO kablam! | | Oct 21 19:46:11.557 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.557 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.557 INFO kablam! ... Oct 21 19:46:11.557 INFO kablam! 117 | / test_tokenizer!( Oct 21 19:46:11.557 INFO kablam! 118 | | comma, Oct 21 19:46:11.557 INFO kablam! 119 | | ",", Oct 21 19:46:11.557 INFO kablam! 120 | | Token::Comma, Oct 21 19:46:11.557 INFO kablam! 121 | | "Tokenizer does not recognize comma." Oct 21 19:46:11.557 INFO kablam! 122 | | ); Oct 21 19:46:11.557 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.557 INFO kablam! | Oct 21 19:46:11.557 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.557 INFO kablam! found type `std::string::String` Oct 21 19:46:11.557 INFO kablam! Oct 21 19:46:11.557 INFO kablam! error[E0308]: mismatched types Oct 21 19:46:11.557 INFO kablam! --> src/scanner.rs:77:39 Oct 21 19:46:11.557 INFO kablam! | Oct 21 19:46:11.557 INFO kablam! 77 | let tokens = tokenize($match_values.to_string()); Oct 21 19:46:11.557 INFO kablam! | ^^^^^^^^^^^^^^^^^^^^^^^^^ Oct 21 19:46:11.557 INFO kablam! | | Oct 21 19:46:11.557 INFO kablam! | expected &str, found struct `std::string::String` Oct 21 19:46:11.557 INFO kablam! | help: consider borrowing here: `&$match_values.to_string()` Oct 21 19:46:11.557 INFO kablam! ... Oct 21 19:46:11.557 INFO kablam! 123 | / test_tokenizer!( Oct 21 19:46:11.557 INFO kablam! 124 | | external, Oct 21 19:46:11.557 INFO kablam! 125 | | "sin(", Oct 21 19:46:11.557 INFO kablam! 126 | | Token::External(_), Oct 21 19:46:11.557 INFO kablam! 127 | | "Tokenizer does not recognize externals." Oct 21 19:46:11.557 INFO kablam! 128 | | ); Oct 21 19:46:11.557 INFO kablam! | |______- in this macro invocation Oct 21 19:46:11.557 INFO kablam! | Oct 21 19:46:11.557 INFO kablam! = note: expected type `&str` Oct 21 19:46:11.557 INFO kablam! found type `std::string::String` Oct 21 19:46:11.557 INFO kablam! Oct 21 19:46:11.563 INFO kablam! error: aborting due to 15 previous errors Oct 21 19:46:11.563 INFO kablam! Oct 21 19:46:11.563 INFO kablam! For more information about this error, try `rustc --explain E0308`. Oct 21 19:46:11.572 INFO kablam! error: Could not compile `rcalc`. Oct 21 19:46:11.572 INFO kablam! warning: build failed, waiting for other jobs to finish... Oct 21 19:46:11.734 INFO kablam! error: build failed Oct 21 19:46:11.735 INFO kablam! su: No module specific data is present Oct 21 19:46:12.576 INFO running `"docker" "rm" "-f" "e1f6084f3d79e9c95d8eb6801ef80e7859367ea9ea1f4928cdd709298fb2f8ce"` Oct 21 19:46:12.944 INFO blam! e1f6084f3d79e9c95d8eb6801ef80e7859367ea9ea1f4928cdd709298fb2f8ce