[INFO] updating cached repository https://github.com/coderbot16/implode
[INFO] running `"git" "-c" "credential.helper=" "-c" "credential.helper=/workspace/cargo-home/bin/git-credential-null" "-c" "remote.origin.fetch=refs/heads/*:refs/heads/*" "fetch" "origin" "--force" "--prune"`
[INFO] running `"git" "rev-parse" "HEAD"`
[INFO] [stdout] 37bca92a7164a5ed1bea1e8f5b4dd0164de9b37c
[INFO] checking coderbot16/implode against master#bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc for pr-70917
[INFO] running `"git" "clone" "/workspace/cache/git-repos/https%3A%2F%2Fgithub.com%2Fcoderbot16%2Fimplode" "/workspace/builds/worker-14/source"`
[INFO] [stderr] Cloning into '/workspace/builds/worker-14/source'...
[INFO] [stderr] done.
[INFO] validating manifest of git repo https://github.com/coderbot16/implode on toolchain bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking git repo https://github.com/coderbot16/implode
[INFO] finished tweaking git repo https://github.com/coderbot16/implode
[INFO] tweaked toml for git repo https://github.com/coderbot16/implode written to /workspace/builds/worker-14/source/Cargo.toml
[INFO] crate git repo https://github.com/coderbot16/implode already has a lockfile, it will not be regenerated
[INFO] running `"/workspace/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-14/source:/opt/rustwide/workdir:ro,Z" "-v" "/var/lib/crater-agent-workspace/cargo-home:/opt/rustwide/cargo-home:ro,Z" "-v" "/var/lib/crater-agent-workspace/rustup-home:/opt/rustwide/rustup-home:ro,Z" "-e" "SOURCE_DIR=/opt/rustwide/workdir" "-e" "MAP_USER_ID=0" "-e" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--network" "none" "rustops/crates-build-env" "/opt/rustwide/cargo-home/bin/cargo" "+bf1f2eedda4fa02b7c9347dd849ed73ddd43dedc" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] [stdout] b71dcd04c9f4c2c5210431df36022e293b77e27f64fdd6f01caf8f5b67ca8b9a
[INFO] running `"docker" "start" "-a" "b71dcd04c9f4c2c5210431df36022e293b77e27f64fdd6f01caf8f5b67ca8b9a"`
[INFO] [stderr]     Checking implode v0.1.1 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0433]: failed to resolve: maybe a missing crate `implode`?
[INFO] [stderr]  --> src/test.rs:1:5
[INFO] [stderr]   |
[INFO] [stderr] 1 | use implode::symbol::{Symbol, CodeTable, DEFAULT_CODE_TABLE, decode_bits, BitDecodeError, END};
[INFO] [stderr]   |     ^^^^^^^ maybe a missing crate `implode`?
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Symbol`
[INFO] [stderr]   --> src/test.rs:18:20
[INFO] [stderr]    |
[INFO] [stderr] 18 |         assert_eq!(Symbol::Literal(b as u8), unwrapped.decoded);
[INFO] [stderr]    |                    ^^^^^^ use of undeclared type or module `Symbol`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `BitDecodeError`
[INFO] [stderr]   --> src/test.rs:32:17
[INFO] [stderr]    |
[INFO] [stderr] 32 |                 BitDecodeError::NotEnoughBits(n) => assert_eq!(9-x, n)
[INFO] [stderr]    |                 ^^^^^^^^^^^^^^ use of undeclared type or module `BitDecodeError`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Symbol`
[INFO] [stderr]   --> src/test.rs:48:13
[INFO] [stderr]    |
[INFO] [stderr] 48 |     assert_eq!(Symbol::End, decode.decoded);
[INFO] [stderr]    |                ^^^^^^ use of undeclared type or module `Symbol`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Symbol`
[INFO] [stderr]   --> src/test.rs:99:18
[INFO] [stderr]    |
[INFO] [stderr] 99 |                         assert_eq!(Symbol::Pair {distance: ((dst<<2) | subdst)+1, length: len+2}, s.decoded);
[INFO] [stderr]    |                                    ^^^^^^ use of undeclared type or module `Symbol`
[INFO] [stderr] 
[INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `Symbol`
[INFO] [stderr]    --> src/test.rs:117:19
[INFO] [stderr]     |
[INFO] [stderr] 117 |                             assert_eq!(Symbol::Pair {distance: ((dst<<dsize) | subdst)+1, length: len+2}, s.decoded);
[INFO] [stderr]     |                                        ^^^^^^ use of undeclared type or module `Symbol`
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `decode_bits` in this scope
[INFO] [stderr]   --> src/test.rs:11:19
[INFO] [stderr]    |
[INFO] [stderr] 11 |         let out = decode_bits(byte, 9, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF);
[INFO] [stderr]    |                   ^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::decode_bits;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:11:41
[INFO] [stderr]    |
[INFO] [stderr] 11 |         let out = decode_bits(byte, 9, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF);
[INFO] [stderr]    |                                         ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `decode_bits` in this scope
[INFO] [stderr]   --> src/test.rs:29:15
[INFO] [stderr]    |
[INFO] [stderr] 29 |         match decode_bits(0, x, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF) {
[INFO] [stderr]    |               ^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::decode_bits;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:29:34
[INFO] [stderr]    |
[INFO] [stderr] 29 |         match decode_bits(0, x, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF) {
[INFO] [stderr]    |                                  ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `decode_bits` in this scope
[INFO] [stderr]   --> src/test.rs:43:21
[INFO] [stderr]    |
[INFO] [stderr] 43 |     let decode = match decode_bits(lit, 16, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF) {
[INFO] [stderr]    |                        ^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::decode_bits;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:43:43
[INFO] [stderr]    |
[INFO] [stderr] 43 |     let decode = match decode_bits(lit, 16, &DEFAULT_CODE_TABLE, 0xFFFF_FFFF) {
[INFO] [stderr]    |                                              ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:66:21
[INFO] [stderr]    |
[INFO] [stderr] 66 |         for n in 0..(1 << DEFAULT_CODE_TABLE.extra_len_bits[i]) {
[INFO] [stderr]    |                           ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:67:21
[INFO] [stderr]    |
[INFO] [stderr] 67 |             let bits: u32 = (DEFAULT_CODE_TABLE.extra_len_bits[i] as u32) + (DEFAULT_CODE_TABLE.len_bits[i] as u32) + 1;
[INFO] [stderr]    |                              ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:67:69
[INFO] [stderr]    |
[INFO] [stderr] 67 |             let bits: u32 = (DEFAULT_CODE_TABLE.extra_len_bits[i] as u32) + (DEFAULT_CODE_TABLE.len_bits[i] as u32) + 1;
[INFO] [stderr]    |                                                                              ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:68:28
[INFO] [stderr]    |
[INFO] [stderr] 68 |             let code: u64 = (n << ((DEFAULT_CODE_TABLE.len_bits[i] as u64) + 1)) | ((len_code[i]& 0xFFFF00FF) << 1) | 1;
[INFO] [stderr]    |                                     ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `END` in this scope
[INFO] [stderr]   --> src/test.rs:72:14
[INFO] [stderr]    |
[INFO] [stderr] 72 |             if len == END
[INFO] [stderr]    |                       ^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::END;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:81:30
[INFO] [stderr]    |
[INFO] [stderr] 81 |                 let dbits: u32 = bits + (DEFAULT_CODE_TABLE.dist_bits[j] as u32);
[INFO] [stderr]    |                                          ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `decode_bits` in this scope
[INFO] [stderr]   --> src/test.rs:93:21
[INFO] [stderr]    |
[INFO] [stderr] 93 |                         let s = match decode_bits((x << dbits) | dcode, dbits+2, &DEFAULT_CODE_TABLE, 6) {
[INFO] [stderr]    |                                       ^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::decode_bits;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]   --> src/test.rs:93:65
[INFO] [stderr]    |
[INFO] [stderr] 93 |                         let s = match decode_bits((x << dbits) | dcode, dbits+2, &DEFAULT_CODE_TABLE, 6) {
[INFO] [stderr]    |                                                                                   ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]    |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]    |
[INFO] [stderr] 1  | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]    |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find function `decode_bits` in this scope
[INFO] [stderr]    --> src/test.rs:111:22
[INFO] [stderr]     |
[INFO] [stderr] 111 |                             let s = match decode_bits((x << dbits) | dcode, dbits+dsize, &DEFAULT_CODE_TABLE, dsize) {
[INFO] [stderr]     |                                           ^^^^^^^^^^^ not found in this scope
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use symbol::decode_bits;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error[E0425]: cannot find value `DEFAULT_CODE_TABLE` in this scope
[INFO] [stderr]    --> src/test.rs:111:70
[INFO] [stderr]     |
[INFO] [stderr] 111 |                             let s = match decode_bits((x << dbits) | dcode, dbits+dsize, &DEFAULT_CODE_TABLE, dsize) {
[INFO] [stderr]     |                                                                                           ^^^^^^^^^^^^^^^^^^ not found in this scope
[INFO] [stderr]     |
[INFO] [stderr] help: possible candidate is found in another module, you can import it into scope
[INFO] [stderr]     |
[INFO] [stderr] 1   | use symbol::DEFAULT_CODE_TABLE;
[INFO] [stderr]     |
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 22 previous errors
[INFO] [stderr] 
[INFO] [stderr] Some errors have detailed explanations: E0425, E0433.
[INFO] [stderr] For more information about an error, try `rustc --explain E0425`.
[INFO] [stderr] error: could not compile `implode`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "b71dcd04c9f4c2c5210431df36022e293b77e27f64fdd6f01caf8f5b67ca8b9a"`
[INFO] running `"docker" "rm" "-f" "b71dcd04c9f4c2c5210431df36022e293b77e27f64fdd6f01caf8f5b67ca8b9a"`
[INFO] [stdout] b71dcd04c9f4c2c5210431df36022e293b77e27f64fdd6f01caf8f5b67ca8b9a
