[INFO] crate tokio-io 0.2.0-alpha.6 is already in cache [INFO] checking tokio-io-0.2.0-alpha.6 against try#e922e6444795ab795fab1943288aee3d543699b8 for pr-66852 [INFO] extracting crate tokio-io 0.2.0-alpha.6 into /workspace/builds/worker-6/source [INFO] validating manifest of crates.io crate tokio-io 0.2.0-alpha.6 on toolchain e922e6444795ab795fab1943288aee3d543699b8 [INFO] running `"/workspace/cargo-home/bin/cargo" "+e922e6444795ab795fab1943288aee3d543699b8" "read-manifest" "--manifest-path" "Cargo.toml"` [INFO] started tweaking crates.io crate tokio-io 0.2.0-alpha.6 [INFO] finished tweaking crates.io crate tokio-io 0.2.0-alpha.6 [INFO] tweaked toml for crates.io crate tokio-io 0.2.0-alpha.6 written to /workspace/builds/worker-6/source/Cargo.toml [INFO] running `"/workspace/cargo-home/bin/cargo" "+e922e6444795ab795fab1943288aee3d543699b8" "generate-lockfile" "--manifest-path" "Cargo.toml" "-Zno-index-update"` [INFO] running `"/workspace/cargo-home/bin/cargo" "+e922e6444795ab795fab1943288aee3d543699b8" "fetch" "--locked" "--manifest-path" "Cargo.toml"` [INFO] running `"docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-6/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" "+e922e6444795ab795fab1943288aee3d543699b8" "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] 19340ca1233703bd7a180884062659545d98dacdc8ae644188af139691c5f541 [INFO] running `"docker" "start" "-a" "19340ca1233703bd7a180884062659545d98dacdc8ae644188af139691c5f541"` [INFO] [stderr] Checking tokio-io v0.2.0-alpha.6 (/opt/rustwide/workdir) [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncWriteExt` [INFO] [stderr] --> tests/write.rs:3:28 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::{AsyncWrite, AsyncWriteExt}; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | no `AsyncWriteExt` in the root [INFO] [stderr] | help: a similar name exists in the module: `AsyncWrite` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/write.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/write.rs:11:3 [INFO] [stderr] | [INFO] [stderr] 11 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/write.rs:43:13 [INFO] [stderr] | [INFO] [stderr] 43 | let n = assert_ok!(wr.write(b"hello world").await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncBufReadExt` [INFO] [stderr] --> tests/read_until.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::AsyncBufReadExt; [INFO] [stderr] | ^^^^^^^^^^--------------- [INFO] [stderr] | | | [INFO] [stderr] | | help: a similar name exists in the module: `AsyncBufRead` [INFO] [stderr] | no `AsyncBufReadExt` in the root [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/read_until.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/read_until.rs:6:3 [INFO] [stderr] | [INFO] [stderr] 6 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_until.rs:11:13 [INFO] [stderr] | [INFO] [stderr] 11 | let n = assert_ok!(rd.read_until(b' ', &mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_until.rs:15:13 [INFO] [stderr] | [INFO] [stderr] 15 | let n = assert_ok!(rd.read_until(b' ', &mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_until.rs:19:13 [INFO] [stderr] | [INFO] [stderr] 19 | let n = assert_ok!(rd.read_until(b' ', &mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncWriteExt` [INFO] [stderr] --> tests/write_all.rs:3:28 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::{AsyncWrite, AsyncWriteExt}; [INFO] [stderr] | ^^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | no `AsyncWriteExt` in the root [INFO] [stderr] | help: a similar name exists in the module: `AsyncWrite` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/write_all.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/write_all.rs:12:3 [INFO] [stderr] | [INFO] [stderr] 12 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncBufReadExt` [INFO] [stderr] --> tests/read_line.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_io::AsyncBufReadExt; [INFO] [stderr] | ^^^^^^^^^^--------------- [INFO] [stderr] | | | [INFO] [stderr] | | help: a similar name exists in the module: `AsyncBufRead` [INFO] [stderr] | no `AsyncBufReadExt` in the root [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/write_all.rs:47:5 [INFO] [stderr] | [INFO] [stderr] 47 | assert_ok!(wr.write_all(b"hello world").await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/read_line.rs:5:5 [INFO] [stderr] | [INFO] [stderr] 5 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/read_line.rs:7:3 [INFO] [stderr] | [INFO] [stderr] 7 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_line.rs:12:13 [INFO] [stderr] | [INFO] [stderr] 12 | let n = assert_ok!(rd.read_line(&mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncReadExt` [INFO] [stderr] --> tests/copy.rs:3:27 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::{AsyncRead, AsyncReadExt}; [INFO] [stderr] | ^^^^^^^^^^^^ [INFO] [stderr] | | [INFO] [stderr] | no `AsyncReadExt` in the root [INFO] [stderr] | help: a similar name exists in the module: `AsyncRead` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/copy.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_line.rs:16:13 [INFO] [stderr] | [INFO] [stderr] 16 | let n = assert_ok!(rd.read_line(&mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_line.rs:20:13 [INFO] [stderr] | [INFO] [stderr] 20 | let n = assert_ok!(rd.read_line(&mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_line.rs:24:13 [INFO] [stderr] | [INFO] [stderr] 24 | let n = assert_ok!(rd.read_line(&mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/copy.rs:10:3 [INFO] [stderr] | [INFO] [stderr] 10 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/copy.rs:33:13 [INFO] [stderr] | [INFO] [stderr] 33 | let n = assert_ok!(rd.copy(&mut wr).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio_test` [INFO] [stderr] --> tests/async_read.rs:2:5 [INFO] [stderr] | [INFO] [stderr] 2 | use tokio_test::task::MockTask; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncReadExt` [INFO] [stderr] --> tests/read_to_end.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::AsyncReadExt; [INFO] [stderr] | ^^^^^^^^^^------------ [INFO] [stderr] | | | [INFO] [stderr] | | help: a similar name exists in the module: `AsyncRead` [INFO] [stderr] | no `AsyncReadExt` in the root [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/read_to_end.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/read_to_end.rs:6:3 [INFO] [stderr] | [INFO] [stderr] 6 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_io::AsyncReadExt` [INFO] [stderr] --> tests/read_exact.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_io::AsyncReadExt; [INFO] [stderr] | ^^^^^^^^^^------------ [INFO] [stderr] | | | [INFO] [stderr] | | help: a similar name exists in the module: `AsyncRead` [INFO] [stderr] | no `AsyncReadExt` in the root [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/read_exact.rs:4:5 [INFO] [stderr] | [INFO] [stderr] 4 | use tokio_test::assert_ok; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `tokio` [INFO] [stderr] --> tests/read_exact.rs:6:3 [INFO] [stderr] | [INFO] [stderr] 6 | #[tokio::test] [INFO] [stderr] | ^^^^^ use of undeclared type or module `tokio` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_to_end.rs:11:13 [INFO] [stderr] | [INFO] [stderr] 11 | let n = assert_ok!(rd.read_to_end(&mut buf).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ok` [INFO] [stderr] --> tests/read_exact.rs:11:13 [INFO] [stderr] | [INFO] [stderr] 11 | let n = assert_ok!(rd.read_exact(&mut buf[..]).await); [INFO] [stderr] | ^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: aborting due to 6 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 7 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error[E0432]: unresolved import `tokio_test` [INFO] [stderr] --> tests/async_read.rs:3:5 [INFO] [stderr] | [INFO] [stderr] 3 | use tokio_test::{assert_ready_err, assert_ready_ok}; [INFO] [stderr] | ^^^^^^^^^^ use of undeclared type or module `tokio_test` [INFO] [stderr] [INFO] [stderr] error[E0432]: unresolved import `futures_util` [INFO] [stderr] --> tests/async_read.rs:6:5 [INFO] [stderr] | [INFO] [stderr] 6 | use futures_util::pin_mut; [INFO] [stderr] | ^^^^^^^^^^^^ use of undeclared type or module `futures_util` [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `pin_mut` [INFO] [stderr] --> tests/async_read.rs:37:9 [INFO] [stderr] | [INFO] [stderr] 37 | pin_mut!(rd); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ready_ok` [INFO] [stderr] --> tests/async_read.rs:39:17 [INFO] [stderr] | [INFO] [stderr] 39 | let n = assert_ready_ok!(rd.poll_read_buf(cx, &mut buf)); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: cannot determine resolution for the macro `pin_mut` [INFO] [stderr] --> tests/async_read.rs:66:9 [INFO] [stderr] | [INFO] [stderr] 66 | pin_mut!(rd); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ready_err` [INFO] [stderr] --> tests/async_read.rs:68:19 [INFO] [stderr] | [INFO] [stderr] 68 | let err = assert_ready_err!(rd.poll_read_buf(cx, &mut buf)); [INFO] [stderr] | ^^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `pin_mut` [INFO] [stderr] --> tests/async_read.rs:95:9 [INFO] [stderr] | [INFO] [stderr] 95 | pin_mut!(rd); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ready_ok` [INFO] [stderr] --> tests/async_read.rs:97:17 [INFO] [stderr] | [INFO] [stderr] 97 | let n = assert_ready_ok!(rd.poll_read_buf(cx, &mut buf)); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `pin_mut` [INFO] [stderr] --> tests/async_read.rs:125:9 [INFO] [stderr] | [INFO] [stderr] 125 | pin_mut!(rd); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ready_ok` [INFO] [stderr] --> tests/async_read.rs:127:17 [INFO] [stderr] | [INFO] [stderr] 127 | let n = assert_ready_ok!(rd.poll_read_buf(cx, &mut buf)); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `pin_mut` [INFO] [stderr] --> tests/async_read.rs:161:9 [INFO] [stderr] | [INFO] [stderr] 161 | pin_mut!(rd); [INFO] [stderr] | ^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error: cannot determine resolution for the macro `assert_ready_ok` [INFO] [stderr] --> tests/async_read.rs:163:17 [INFO] [stderr] | [INFO] [stderr] 163 | let n = assert_ready_ok!(rd.poll_read_buf(cx, &mut buf)); [INFO] [stderr] | ^^^^^^^^^^^^^^^ [INFO] [stderr] | [INFO] [stderr] = note: import resolution is stuck, try simplifying macro imports [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `MockTask` [INFO] [stderr] --> tests/async_read.rs:33:20 [INFO] [stderr] | [INFO] [stderr] 33 | let mut task = MockTask::new(); [INFO] [stderr] | ^^^^^^^^ use of undeclared type or module `MockTask` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `MockTask` [INFO] [stderr] --> tests/async_read.rs:62:20 [INFO] [stderr] | [INFO] [stderr] 62 | let mut task = MockTask::new(); [INFO] [stderr] | ^^^^^^^^ use of undeclared type or module `MockTask` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `MockTask` [INFO] [stderr] --> tests/async_read.rs:89:20 [INFO] [stderr] | [INFO] [stderr] 89 | let mut task = MockTask::new(); [INFO] [stderr] | ^^^^^^^^ use of undeclared type or module `MockTask` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `MockTask` [INFO] [stderr] --> tests/async_read.rs:121:20 [INFO] [stderr] | [INFO] [stderr] 121 | let mut task = MockTask::new(); [INFO] [stderr] | ^^^^^^^^ use of undeclared type or module `MockTask` [INFO] [stderr] [INFO] [stderr] error[E0433]: failed to resolve: use of undeclared type or module `MockTask` [INFO] [stderr] --> tests/async_read.rs:153:20 [INFO] [stderr] | [INFO] [stderr] 153 | let mut task = MockTask::new(); [INFO] [stderr] | ^^^^^^^^ use of undeclared type or module `MockTask` [INFO] [stderr] [INFO] [stderr] error: aborting due to 4 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stderr] error: aborting due to 18 previous errors [INFO] [stderr] [INFO] [stderr] Some errors have detailed explanations: E0432, E0433. [INFO] [stderr] For more information about an error, try `rustc --explain E0432`. [INFO] [stderr] error: could not compile `tokio-io`. [INFO] [stderr] [INFO] [stderr] To learn more, run the command again with --verbose. [INFO] running `"docker" "inspect" "19340ca1233703bd7a180884062659545d98dacdc8ae644188af139691c5f541"` [INFO] running `"docker" "rm" "-f" "19340ca1233703bd7a180884062659545d98dacdc8ae644188af139691c5f541"` [INFO] [stdout] 19340ca1233703bd7a180884062659545d98dacdc8ae644188af139691c5f541