[INFO] fetching crate hatmil 0.3.0... [INFO] testing hatmil-0.3.0 against try#8de4c7234dd9b97c9d76b58671343fdbbc9a433e+target=x86_64-unknown-linux-musl for musl_upgrade_1_2_5_with_libc_patch_0 [INFO] extracting crate hatmil 0.3.0 into /workspace/builds/worker-0-tc1/source [INFO] started tweaking crates.io crate hatmil 0.3.0 [INFO] finished tweaking crates.io crate hatmil 0.3.0 [INFO] tweaked toml for crates.io crate hatmil 0.3.0 written to /workspace/builds/worker-0-tc1/source/Cargo.toml [INFO] validating manifest of crates.io crate hatmil 0.3.0 on toolchain 8de4c7234dd9b97c9d76b58671343fdbbc9a433e [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] crate crates.io crate hatmil 0.3.0 already has a lockfile, it will not be regenerated [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:90999bfc7ae267e83380e433d8e61a7c072ca6729e92edbae886d3423b3a6f4c" "/opt/rustwide/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 817ec02ef4208badcf0959579d2fd9b07aa93cc484fd1610b33a97098b31069b [INFO] running `Command { std: "docker" "start" "-a" "817ec02ef4208badcf0959579d2fd9b07aa93cc484fd1610b33a97098b31069b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "817ec02ef4208badcf0959579d2fd9b07aa93cc484fd1610b33a97098b31069b", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "817ec02ef4208badcf0959579d2fd9b07aa93cc484fd1610b33a97098b31069b", kill_on_drop: false }` [INFO] [stdout] 817ec02ef4208badcf0959579d2fd9b07aa93cc484fd1610b33a97098b31069b [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:90999bfc7ae267e83380e433d8e61a7c072ca6729e92edbae886d3423b3a6f4c" "/opt/rustwide/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "build" "--frozen" "--message-format=json" "--target" "x86_64-unknown-linux-musl", kill_on_drop: false }` [INFO] [stdout] 7fbc42cebe6e9b9bd64b95b46735409e7b1233689379275ddac3b795d521bb7c [INFO] running `Command { std: "docker" "start" "-a" "7fbc42cebe6e9b9bd64b95b46735409e7b1233689379275ddac3b795d521bb7c", kill_on_drop: false }` [INFO] [stderr] Compiling hatmil v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:50:13 [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:59:18 [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:331:30 [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 349 | / elements![ [INFO] [stdout] 350 | | a, abbr, address, article, aside, audio, b, bdi, bdo, blockquote, body, br, [INFO] [stdout] 351 | | button, canvas, caption, cite, code, colgroup, data, datalist, dd, del, [INFO] [stdout] 352 | | details, dfn, dialog, div, dl, dt, em, fieldset, figcaption, figure, [INFO] [stdout] ... | [INFO] [stdout] 358 | | textarea, tfoot, th, thead, time, title, tr, u, ul, var, video [INFO] [stdout] 359 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:369:30 [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 387 | / void_elements![ [INFO] [stdout] 388 | | area, base, col, embed, hr, img, input, link, meta, source, track, wbr [INFO] [stdout] 389 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `void_elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 0.34s [INFO] running `Command { std: "docker" "inspect" "7fbc42cebe6e9b9bd64b95b46735409e7b1233689379275ddac3b795d521bb7c", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "7fbc42cebe6e9b9bd64b95b46735409e7b1233689379275ddac3b795d521bb7c", kill_on_drop: false }` [INFO] [stdout] 7fbc42cebe6e9b9bd64b95b46735409e7b1233689379275ddac3b795d521bb7c [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:90999bfc7ae267e83380e433d8e61a7c072ca6729e92edbae886d3423b3a6f4c" "/opt/rustwide/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "test" "--frozen" "--no-run" "--message-format=json" "--target" "x86_64-unknown-linux-musl", kill_on_drop: false }` [INFO] [stdout] 261f88c3c88e7ef9c41e13fc90da0f29f1d58c97190dc9f7087c0c02c3082782 [INFO] running `Command { std: "docker" "start" "-a" "261f88c3c88e7ef9c41e13fc90da0f29f1d58c97190dc9f7087c0c02c3082782", kill_on_drop: false }` [INFO] [stderr] Compiling hatmil v0.3.0 (/opt/rustwide/workdir) [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:50:13 [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:59:18 [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:331:30 [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 349 | / elements![ [INFO] [stdout] 350 | | a, abbr, address, article, aside, audio, b, bdi, bdo, blockquote, body, br, [INFO] [stdout] 351 | | button, canvas, caption, cite, code, colgroup, data, datalist, dd, del, [INFO] [stdout] 352 | | details, dfn, dialog, div, dl, dt, em, fieldset, figcaption, figure, [INFO] [stdout] ... | [INFO] [stdout] 358 | | textarea, tfoot, th, thead, time, title, tr, u, ul, var, video [INFO] [stdout] 359 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:369:30 [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 387 | / void_elements![ [INFO] [stdout] 388 | | area, base, col, embed, hr, img, input, link, meta, source, track, wbr [INFO] [stdout] 389 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `void_elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:50:13 [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 50 | fn elem(&mut self, elem: &'static str) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:59:18 [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] | [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:331:30 [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem { [INFO] [stdout] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 349 | / elements![ [INFO] [stdout] 350 | | a, abbr, address, article, aside, audio, b, bdi, bdo, blockquote, body, br, [INFO] [stdout] 351 | | button, canvas, caption, cite, code, colgroup, data, datalist, dd, del, [INFO] [stdout] 352 | | details, dfn, dialog, div, dl, dt, em, fieldset, figcaption, figure, [INFO] [stdout] ... | [INFO] [stdout] 358 | | textarea, tfoot, th, thead, time, title, tr, u, ul, var, video [INFO] [stdout] 359 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 331 | pub fn $elem(&mut self) -> Elem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stdout] --> src/html.rs:369:30 [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem { [INFO] [stdout] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stdout] | | [INFO] [stdout] | this lifetime flows to the output [INFO] [stdout] ... [INFO] [stdout] 387 | / void_elements![ [INFO] [stdout] 388 | | area, base, col, embed, hr, img, input, link, meta, source, track, wbr [INFO] [stdout] 389 | | ]; [INFO] [stdout] | |_- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = note: this warning originates in the macro `void_elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stdout] | [INFO] [stdout] 369 | pub fn $elem(&mut self) -> VoidElem<'_> { [INFO] [stdout] | ++++ [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.61s [INFO] running `Command { std: "docker" "inspect" "261f88c3c88e7ef9c41e13fc90da0f29f1d58c97190dc9f7087c0c02c3082782", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "261f88c3c88e7ef9c41e13fc90da0f29f1d58c97190dc9f7087c0c02c3082782", kill_on_drop: false }` [INFO] [stdout] 261f88c3c88e7ef9c41e13fc90da0f29f1d58c97190dc9f7087c0c02c3082782 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-0-tc1/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" "CARGO_TARGET_DIR=/opt/rustwide/target" "-e" "CARGO_INCREMENTAL=0" "-e" "RUST_BACKTRACE=full" "-e" "RUSTFLAGS=--cap-lints=forbid" "-e" "RUSTDOCFLAGS=--cap-lints=forbid" "-e" "CARGO_HOME=/opt/rustwide/cargo-home" "-e" "RUSTUP_HOME=/opt/rustwide/rustup-home" "-w" "/opt/rustwide/workdir" "-m" "1610612736" "--user" "0:0" "--network" "none" "ghcr.io/rust-lang/crates-build-env/linux@sha256:90999bfc7ae267e83380e433d8e61a7c072ca6729e92edbae886d3423b3a6f4c" "/opt/rustwide/cargo-home/bin/cargo" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "test" "--frozen" "--target" "x86_64-unknown-linux-musl", kill_on_drop: false }` [INFO] [stdout] 9c481b5cd3333321c8861568b8f3abf3c6f5b224f85b117fb665f13c4253c642 [INFO] running `Command { std: "docker" "start" "-a" "9c481b5cd3333321c8861568b8f3abf3c6f5b224f85b117fb665f13c4253c642", kill_on_drop: false }` [INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stderr] --> src/html.rs:50:13 [INFO] [stderr] | [INFO] [stderr] 50 | fn elem(&mut self, elem: &'static str) -> Elem { [INFO] [stderr] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stderr] | | [INFO] [stderr] | this lifetime flows to the output [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(mismatched_lifetime_syntaxes)]` on by default [INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stderr] | [INFO] [stderr] 50 | fn elem(&mut self, elem: &'static str) -> Elem<'_> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stderr] --> src/html.rs:59:18 [INFO] [stderr] | [INFO] [stderr] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem { [INFO] [stderr] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stderr] | | [INFO] [stderr] | this lifetime flows to the output [INFO] [stderr] | [INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stderr] | [INFO] [stderr] 59 | fn void_elem(&mut self, elem: &'static str) -> VoidElem<'_> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stderr] --> src/html.rs:331:30 [INFO] [stderr] | [INFO] [stderr] 331 | pub fn $elem(&mut self) -> Elem { [INFO] [stderr] | ^^^^^^^^^ ---- the lifetime gets resolved as `'_` [INFO] [stderr] | | [INFO] [stderr] | this lifetime flows to the output [INFO] [stderr] ... [INFO] [stderr] 349 | / elements![ [INFO] [stderr] 350 | | a, abbr, address, article, aside, audio, b, bdi, bdo, blockquote, body, br, [INFO] [stderr] 351 | | button, canvas, caption, cite, code, colgroup, data, datalist, dd, del, [INFO] [stderr] 352 | | details, dfn, dialog, div, dl, dt, em, fieldset, figcaption, figure, [INFO] [stderr] ... | [INFO] [stderr] 358 | | textarea, tfoot, th, thead, time, title, tr, u, ul, var, video [INFO] [stderr] 359 | | ]; [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stderr] | [INFO] [stderr] 331 | pub fn $elem(&mut self) -> Elem<'_> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: lifetime flowing from input to output with different syntax can be confusing [INFO] [stderr] --> src/html.rs:369:30 [INFO] [stderr] | [INFO] [stderr] 369 | pub fn $elem(&mut self) -> VoidElem { [INFO] [stderr] | ^^^^^^^^^ -------- the lifetime gets resolved as `'_` [INFO] [stderr] | | [INFO] [stderr] | this lifetime flows to the output [INFO] [stderr] ... [INFO] [stderr] 387 | / void_elements![ [INFO] [stderr] 388 | | area, base, col, embed, hr, img, input, link, meta, source, track, wbr [INFO] [stderr] 389 | | ]; [INFO] [stderr] | |_- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = note: this warning originates in the macro `void_elements` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] help: one option is to remove the lifetime for references and use the anonymous lifetime for paths [INFO] [stderr] | [INFO] [stderr] 369 | pub fn $elem(&mut self) -> VoidElem<'_> { [INFO] [stderr] | ++++ [INFO] [stderr] [INFO] [stderr] warning: `hatmil` (lib) generated 4 warnings (run `cargo fix --lib -p hatmil` to apply 4 suggestions) [INFO] [stderr] warning: `hatmil` (lib test) generated 4 warnings (4 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.04s [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/x86_64-unknown-linux-musl/debug/deps/hatmil-7411b5bcade00462) [INFO] [stdout] [INFO] [stdout] running 9 tests [INFO] [stdout] test html::test::build_html ... ok [INFO] [stdout] test html::test::escaping ... ok [INFO] [stdout] test html::test::div ... ok [INFO] [stdout] test html::test::html ... ok [INFO] [stdout] test html::test::html_builder ... ok [INFO] [stdout] test html::test::paragraph ... ok [INFO] [stdout] test html::test::raw_burger ... ok [INFO] [stdout] test html::test::void ... ok [INFO] [stdout] test html::test::boolean ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 9 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.00s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "9c481b5cd3333321c8861568b8f3abf3c6f5b224f85b117fb665f13c4253c642", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "9c481b5cd3333321c8861568b8f3abf3c6f5b224f85b117fb665f13c4253c642", kill_on_drop: false }` [INFO] [stdout] 9c481b5cd3333321c8861568b8f3abf3c6f5b224f85b117fb665f13c4253c642