[INFO] crate futex 0.1.3 is already in cache
[INFO] checking futex-0.1.3 against master#209b2be09fcaff937480d1fbbe8b31646e361c7a for pr-70917
[INFO] extracting crate futex 0.1.3 into /workspace/builds/worker-4/source
[INFO] validating manifest of crates.io crate futex 0.1.3 on toolchain 209b2be09fcaff937480d1fbbe8b31646e361c7a
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "read-manifest" "--manifest-path" "Cargo.toml"`
[INFO] started tweaking crates.io crate futex 0.1.3
[INFO] finished tweaking crates.io crate futex 0.1.3
[INFO] tweaked toml for crates.io crate futex 0.1.3 written to /workspace/builds/worker-4/source/Cargo.toml
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"`
[INFO] running `"/workspace/cargo-home/bin/cargo" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "fetch" "--locked" "--manifest-path" "Cargo.toml"`
[INFO] [stderr]     Blocking waiting for file lock on package cache
[INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-4/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" "+209b2be09fcaff937480d1fbbe8b31646e361c7a" "check" "--frozen" "--all" "--all-targets"`
[INFO] [stdout] 2d6a8c45797d4ce36027dba2a499d8358f18a776076d4f2a604db1447b90bae6
[INFO] [stderr] WARNING: Your kernel does not support swap limit capabilities or the cgroup is not mounted. Memory limited without swap.
[INFO] running `"docker" "start" "-a" "2d6a8c45797d4ce36027dba2a499d8358f18a776076d4f2a604db1447b90bae6"`
[INFO] [stderr]     Checking integer-atomics v1.0.2
[INFO] [stderr]     Checking lock-wrappers v0.1.2
[INFO] [stderr]     Checking futex v0.1.3 (/opt/rustwide/workdir)
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `raw::futex::Futex` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:20:37
[INFO] [stderr]    |
[INFO] [stderr] 20 |         let futex = Arc::new(Mutex::new());
[INFO] [stderr]    |                                     ^^^ function or associated item not found in `raw::futex::Futex`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/raw/futex.rs:15:1
[INFO] [stderr]    |
[INFO] [stderr] 15 | pub struct Futex {
[INFO] [stderr]    | ---------------- function or associated item `new` not found for this
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is implemented and in scope
[INFO] [stderr]    = note: the following trait defines an item `new`, perhaps you need to implement it:
[INFO] [stderr]            candidate #1: `integer_atomics::atomic::IntCast`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `clone` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:21:28
[INFO] [stderr]    |
[INFO] [stderr] 21 |         let futex2 = futex.clone();
[INFO] [stderr]    |                            ^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:22:15
[INFO] [stderr]    |
[INFO] [stderr] 22 |         futex.acquire();
[INFO] [stderr]    |               ^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:27:15
[INFO] [stderr]    |
[INFO] [stderr] 27 |         futex.acquire();
[INFO] [stderr]    |               ^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:28:15
[INFO] [stderr]    |
[INFO] [stderr] 28 |         futex.release();
[INFO] [stderr]    |               ^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `raw::rwfutex4::RwFutex2` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:33:38
[INFO] [stderr]    |
[INFO] [stderr] 33 |         let futex = Arc::new(RwLock::new());
[INFO] [stderr]    |                                      ^^^ function or associated item not found in `raw::rwfutex4::RwFutex2`
[INFO] [stderr]    | 
[INFO] [stderr]   ::: src/raw/rwfutex4.rs:34:1
[INFO] [stderr]    |
[INFO] [stderr] 34 | pub struct RwFutex2 {
[INFO] [stderr]    | ------------------- function or associated item `new` not found for this
[INFO] [stderr]    |
[INFO] [stderr]    = help: items from traits can only be used if the trait is implemented and in scope
[INFO] [stderr]    = note: the following trait defines an item `new`, perhaps you need to implement it:
[INFO] [stderr]            candidate #1: `integer_atomics::atomic::IntCast`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `clone` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:34:28
[INFO] [stderr]    |
[INFO] [stderr] 34 |         let futex2 = futex.clone();
[INFO] [stderr]    |                            ^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:35:15
[INFO] [stderr]    |
[INFO] [stderr] 35 |         futex.acquire_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:36:15
[INFO] [stderr]    |
[INFO] [stderr] 36 |         futex.acquire_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:37:15
[INFO] [stderr]    |
[INFO] [stderr] 37 |         futex.acquire_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:45:15
[INFO] [stderr]    |
[INFO] [stderr] 45 |         futex.release_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:46:15
[INFO] [stderr]    |
[INFO] [stderr] 46 |         futex.release_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:47:15
[INFO] [stderr]    |
[INFO] [stderr] 47 |         futex.release_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:48:15
[INFO] [stderr]    |
[INFO] [stderr] 48 |         futex.acquire_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> src/raw/mod.rs:49:15
[INFO] [stderr]    |
[INFO] [stderr] 49 |         futex.release_read();
[INFO] [stderr]    |               ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 15 previous errors
[INFO] [stderr] 
[INFO] [stderr] For more information about this error, try `rustc --explain E0599`.
[INFO] [stderr] error: could not compile `futex`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] [stderr] warning: build failed, waiting for other jobs to finish...
[INFO] [stderr] error[E0599]: no function or associated item named `new` found for struct `futex::raw::RwLock` in the current scope
[INFO] [stderr]   --> examples/main.rs:11:34
[INFO] [stderr]    |
[INFO] [stderr] 11 |     let futex = Arc::new(RwLock::new());
[INFO] [stderr]    |                                  ^^^ function or associated item not found in `futex::raw::RwLock`
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `clone` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:12:24
[INFO] [stderr]    |
[INFO] [stderr] 12 |     let futex2 = futex.clone();
[INFO] [stderr]    |                        ^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:13:11
[INFO] [stderr]    |
[INFO] [stderr] 13 |     futex.acquire_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:14:11
[INFO] [stderr]    |
[INFO] [stderr] 14 |     futex.acquire_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:15:11
[INFO] [stderr]    |
[INFO] [stderr] 15 |     futex.acquire_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:32:11
[INFO] [stderr]    |
[INFO] [stderr] 32 |     futex.release_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:33:11
[INFO] [stderr]    |
[INFO] [stderr] 33 |     futex.release_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_read` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:36:11
[INFO] [stderr]    |
[INFO] [stderr] 36 |     futex.release_read();
[INFO] [stderr]    |           ^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `acquire_write` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:38:11
[INFO] [stderr]    |
[INFO] [stderr] 38 |     futex.acquire_write();
[INFO] [stderr]    |           ^^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error[E0599]: no method named `release_write` found for struct `std::sync::Arc<_>` in the current scope
[INFO] [stderr]   --> examples/main.rs:41:11
[INFO] [stderr]    |
[INFO] [stderr] 41 |     futex.release_write();
[INFO] [stderr]    |           ^^^^^^^^^^^^^ method not found in `std::sync::Arc<_>`
[INFO] [stderr]    |
[INFO] [stderr]    = note: `futex` is a function, perhaps you wish to call it
[INFO] [stderr] 
[INFO] [stderr] error: aborting due to 10 previous errors
[INFO] [stderr] 
[INFO] [stderr] For more information about this error, try `rustc --explain E0599`.
[INFO] [stderr] error: could not compile `futex`.
[INFO] [stderr] 
[INFO] [stderr] To learn more, run the command again with --verbose.
[INFO] running `"docker" "inspect" "2d6a8c45797d4ce36027dba2a499d8358f18a776076d4f2a604db1447b90bae6"`
[INFO] running `"docker" "rm" "-f" "2d6a8c45797d4ce36027dba2a499d8358f18a776076d4f2a604db1447b90bae6"`
[INFO] [stdout] 2d6a8c45797d4ce36027dba2a499d8358f18a776076d4f2a604db1447b90bae6
