[INFO] fetching crate rust-scheme 0.1.2-alpha.1... [INFO] checking rust-scheme-0.1.2-alpha.1 against try#4d98531622e1718ae0bc3c7a1ab9cd8938428452+rustflags=-Dtail_expr_drop_order for pr-129604 [INFO] extracting crate rust-scheme 0.1.2-alpha.1 into /workspace/builds/worker-7-tc2/source [INFO] validating manifest of crates.io crate rust-scheme 0.1.2-alpha.1 on toolchain 4d98531622e1718ae0bc3c7a1ab9cd8938428452 [INFO] running `Command { std: CARGO_HOME="/workspace/cargo-home" RUSTUP_HOME="/workspace/rustup-home" "/workspace/cargo-home/bin/cargo" "+4d98531622e1718ae0bc3c7a1ab9cd8938428452" "metadata" "--manifest-path" "Cargo.toml" "--no-deps", kill_on_drop: false }` [INFO] started tweaking crates.io crate rust-scheme 0.1.2-alpha.1 [INFO] finished tweaking crates.io crate rust-scheme 0.1.2-alpha.1 [INFO] tweaked toml for crates.io crate rust-scheme 0.1.2-alpha.1 written to /workspace/builds/worker-7-tc2/source/Cargo.toml [INFO] crate crates.io crate rust-scheme 0.1.2-alpha.1 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" "+4d98531622e1718ae0bc3c7a1ab9cd8938428452" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] [stderr] Blocking waiting for file lock on package cache [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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:923055f121b5182466d55868a8b05e67af8ba4a3a3f6bad814e953ca3cd3ac2a" "/opt/rustwide/cargo-home/bin/cargo" "+4d98531622e1718ae0bc3c7a1ab9cd8938428452" "metadata" "--no-deps" "--format-version=1", kill_on_drop: false }` [INFO] [stdout] 500650cee714cf2a8b4ad2c2138f79e6df182fd3c56e25a4bc29f4137730565f [INFO] running `Command { std: "docker" "start" "-a" "500650cee714cf2a8b4ad2c2138f79e6df182fd3c56e25a4bc29f4137730565f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "500650cee714cf2a8b4ad2c2138f79e6df182fd3c56e25a4bc29f4137730565f", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "500650cee714cf2a8b4ad2c2138f79e6df182fd3c56e25a4bc29f4137730565f", kill_on_drop: false }` [INFO] [stdout] 500650cee714cf2a8b4ad2c2138f79e6df182fd3c56e25a4bc29f4137730565f [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-7-tc2/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 -Dtail_expr_drop_order" "-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:923055f121b5182466d55868a8b05e67af8ba4a3a3f6bad814e953ca3cd3ac2a" "/opt/rustwide/cargo-home/bin/cargo" "+4d98531622e1718ae0bc3c7a1ab9cd8938428452" "check" "--frozen" "--all" "--all-targets" "--message-format=json", kill_on_drop: false }` [INFO] [stdout] 40ad9a58dd92d36926622387a61bfeba8ca28f99fa6afa88c62adbf6f4927e2e [INFO] running `Command { std: "docker" "start" "-a" "40ad9a58dd92d36926622387a61bfeba8ca28f99fa6afa88c62adbf6f4927e2e", kill_on_drop: false }` [INFO] [stderr] Checking rust-scheme v0.1.2-alpha.1 (/opt/rustwide/workdir) [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:38:50 [INFO] [stdout] | [INFO] [stdout] 38 | (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 38 - (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stdout] 38 + (Number::Integer(a), Number::Real(b)) => NumberBinaryOperand::Real(a as f64, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:39:50 [INFO] [stdout] | [INFO] [stdout] 39 | (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 39 - (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stdout] 39 + (Number::Real(a), Number::Integer(b)) => NumberBinaryOperand::Real(a, b as f64), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:38:50 [INFO] [stdout] | [INFO] [stdout] 38 | (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] = note: `#[warn(unused_parens)]` on by default [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 38 - (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stdout] 38 + (Number::Integer(a), Number::Real(b)) => NumberBinaryOperand::Real(a as f64, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:39:50 [INFO] [stdout] | [INFO] [stdout] 39 | (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 39 - (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stdout] 39 + (Number::Real(a), Number::Integer(b)) => NumberBinaryOperand::Real(a, b as f64), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:46:53 [INFO] [stdout] | [INFO] [stdout] 46 | (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 46 - (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stdout] 46 + (Number::Integer(a), Number::Integer(b)) => NumberBinaryOperand::Integer(a, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:47:47 [INFO] [stdout] | [INFO] [stdout] 47 | (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 47 - (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stdout] 47 + (Number::Real(a), Number::Real(b)) => NumberBinaryOperand::Real(a, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 140 | 0 => logic_error!("division by exact zero"), [INFO] [stdout] | -------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 151 | _ => logic_error!("unrecognized arithmetic {}", ident), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 161 | ("-", 0) => logic_error!("'-' needs at least one argument"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 162 | ("/", 0) => logic_error!("'/' needs at least one argument"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 166 | _ => logic_error!("unrecognized procedure {}", ident), [INFO] [stdout] | ------------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 173 | _ => logic_error!("expect a number!"), [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 247 | Some(other) => logic_error!("{} is not callable", other), [INFO] [stdout] | ----------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 249 | logic_error!("try to call an undefined identifier: {}", ident) [INFO] [stdout] | -------------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: macro invocations at the end of a block are treated as expressions [INFO] [stdout] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `logic_error` [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:46:53 [INFO] [stdout] | [INFO] [stdout] 46 | (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 46 - (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stdout] 46 + (Number::Integer(a), Number::Integer(b)) => NumberBinaryOperand::Integer(a, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: unnecessary parentheses around match arm expression [INFO] [stdout] --> src/interpreter.rs:47:47 [INFO] [stdout] | [INFO] [stdout] 47 | (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stdout] | ^ ^ [INFO] [stdout] | [INFO] [stdout] help: remove these parentheses [INFO] [stdout] | [INFO] [stdout] 47 - (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stdout] 47 + (Number::Real(a), Number::Real(b)) => NumberBinaryOperand::Real(a, b), [INFO] [stdout] | [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 140 | 0 => logic_error!("division by exact zero"), [INFO] [stdout] | -------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 151 | _ => logic_error!("unrecognized arithmetic {}", ident), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 161 | ("-", 0) => logic_error!("'-' needs at least one argument"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 162 | ("/", 0) => logic_error!("'/' needs at least one argument"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 166 | _ => logic_error!("unrecognized procedure {}", ident), [INFO] [stdout] | ------------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 173 | _ => logic_error!("expect a number!"), [INFO] [stdout] | -------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 260 | _ => logic_error!("expect a procedure here"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 275 | None => logic_error!("undefined identifier: {}", ident), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 61 | _ => invalid_token!("Expect delimiter here instead of {}", c), [INFO] [stdout] | -------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 110 | None => invalid_token!("expect character after #\\"), [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 119 | _ => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 247 | Some(other) => logic_error!("{} is not callable", other), [INFO] [stdout] | ----------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 249 | logic_error!("try to call an undefined identifier: {}", ident) [INFO] [stdout] | -------------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: macro invocations at the end of a block are treated as expressions [INFO] [stdout] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `logic_error` [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 121 | None => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 260 | _ => logic_error!("expect a procedure here"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 221 | None => invalid_token!("Invalid Indentifer {}", identifier_str), [INFO] [stdout] | ------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 271 | None => invalid_token!("Incomplete identifier {}", identifier_str), [INFO] [stdout] | ---------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/interpreter.rs:12:85 [INFO] [stdout] | [INFO] [stdout] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 275 | None => logic_error!("undefined identifier: {}", ident), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 300 | _ => invalid_token!("Unknown escape character"), [INFO] [stdout] | ------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 303 | None => invalid_token!("Incomplete escape character"), [INFO] [stdout] | --------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 61 | _ => invalid_token!("Expect delimiter here instead of {}", c), [INFO] [stdout] | -------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 309 | invalid_token!("Unclosed string literal") [INFO] [stdout] | ----------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: macro invocations at the end of a block are treated as expressions [INFO] [stdout] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `invalid_token` [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 110 | None => invalid_token!("expect character after #\\"), [INFO] [stdout] | -------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 119 | _ => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 83 | Some(Token::RightParen) => syntax_error!("empty procedure call"), [INFO] [stdout] | ------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 121 | None => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stdout] | ----------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 86 | Token::RightParen => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 221 | None => invalid_token!("Invalid Indentifer {}", identifier_str), [INFO] [stdout] | ------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 87 | _ => syntax_error!("unsupported grammar"), [INFO] [stdout] | ------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 271 | None => invalid_token!("Incomplete identifier {}", identifier_str), [INFO] [stdout] | ---------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 89 | None => syntax_error!("empty input or Unmatched Parentheses"), [INFO] [stdout] | ----------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 300 | _ => invalid_token!("Unknown escape character"), [INFO] [stdout] | ------------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 103 | _ => syntax_error!("lambda formals must be idenfiers"), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 303 | None => invalid_token!("Incomplete escape character"), [INFO] [stdout] | --------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/lexer.rs:11:86 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 309 | invalid_token!("Unclosed string literal") [INFO] [stdout] | ----------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: macro invocations at the end of a block are treated as expressions [INFO] [stdout] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `invalid_token` [INFO] [stdout] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 117 | _ => syntax_error!("expect identifiers"), [INFO] [stdout] | ----------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 123 | _ => syntax_error!("lambda body empty"), [INFO] [stdout] | ---------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 83 | Some(Token::RightParen) => syntax_error!("empty procedure call"), [INFO] [stdout] | ------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 137 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 86 | Token::RightParen => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 87 | _ => syntax_error!("unsupported grammar"), [INFO] [stdout] | ------------------------------------ in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 148 | _ => syntax_error!("expect procedure body"), [INFO] [stdout] | -------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 89 | None => syntax_error!("empty input or Unmatched Parentheses"), [INFO] [stdout] | ----------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 103 | _ => syntax_error!("lambda formals must be idenfiers"), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 151 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 117 | _ => syntax_error!("expect identifiers"), [INFO] [stdout] | ----------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 123 | _ => syntax_error!("lambda body empty"), [INFO] [stdout] | ---------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 137 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 153 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 148 | _ => syntax_error!("expect procedure body"), [INFO] [stdout] | -------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 168 | None => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 151 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 153 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stdout] | --------------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 171 | _ => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 168 | None => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 176 | _ => syntax_error!("operator should be an expression"), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 171 | _ => syntax_error!("Unmatched Parentheses!"), [INFO] [stdout] | --------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] warning: trailing semicolon in macro used in expression position [INFO] [stdout] --> src/parser.rs:11:85 [INFO] [stdout] | [INFO] [stdout] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stdout] | ^ [INFO] [stdout] ... [INFO] [stdout] 176 | _ => syntax_error!("operator should be an expression"), [INFO] [stdout] | ------------------------------------------------- in this macro invocation [INFO] [stdout] | [INFO] [stdout] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stdout] = note: for more information, see issue #79813 [INFO] [stdout] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:169:78 [INFO] [stdout] | [INFO] [stdout] 169 | let result: Result = iter.try_fold(init, |a, b| match (a, b) { [INFO] [stdout] | - ^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] = note: requested on the command line with `-D tail-expr-drop-order` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:302:9 [INFO] [stdout] | [INFO] [stdout] 300 | asts: impl IntoIterator, [INFO] [stdout] | --------------------------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] 301 | ) -> Result> { [INFO] [stdout] 302 | asts.into_iter() [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:303:23 [INFO] [stdout] | [INFO] [stdout] 300 | asts: impl IntoIterator, [INFO] [stdout] | --------------------------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 303 | .try_fold(None, |_, ast| self.eval_root_ast(ast)) [INFO] [stdout] | ^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/lexer.rs:92:28 [INFO] [stdout] | [INFO] [stdout] 89 | pub fn new(mut text_iterator: CharIter) -> TokenGenerator { [INFO] [stdout] | --------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 92 | text_iterator: text_iterator.peekable(), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/parser.rs:62:20 [INFO] [stdout] | [INFO] [stdout] 59 | pub fn new(mut lexer: TokenIter) -> Parser { [INFO] [stdout] | -------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 62 | lexer: lexer.peekable(), [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 5 previous errors; 37 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `rust-scheme` (lib) due to 6 previous errors; 70 warnings emitted [INFO] [stderr] warning: build failed, waiting for other jobs to finish... [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:169:78 [INFO] [stdout] | [INFO] [stdout] 169 | let result: Result = iter.try_fold(init, |a, b| match (a, b) { [INFO] [stdout] | - ^^^^^^ [INFO] [stdout] | | [INFO] [stdout] | these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] = note: requested on the command line with `-D tail-expr-drop-order` [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:302:9 [INFO] [stdout] | [INFO] [stdout] 300 | asts: impl IntoIterator, [INFO] [stdout] | --------------------------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] 301 | ) -> Result> { [INFO] [stdout] 302 | asts.into_iter() [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/interpreter.rs:303:23 [INFO] [stdout] | [INFO] [stdout] 300 | asts: impl IntoIterator, [INFO] [stdout] | --------------------------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 303 | .try_fold(None, |_, ast| self.eval_root_ast(ast)) [INFO] [stdout] | ^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/lexer.rs:92:28 [INFO] [stdout] | [INFO] [stdout] 89 | pub fn new(mut text_iterator: CharIter) -> TokenGenerator { [INFO] [stdout] | --------------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 92 | text_iterator: text_iterator.peekable(), [INFO] [stdout] | ^^^^^^^^^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: these values and local bindings have significant drop implementation that will have a different drop order from that of Edition 2021 [INFO] [stdout] --> src/parser.rs:62:20 [INFO] [stdout] | [INFO] [stdout] 59 | pub fn new(mut lexer: TokenIter) -> Parser { [INFO] [stdout] | -------------------- these values have significant drop implementation and will observe changes in drop order under Edition 2024 [INFO] [stdout] ... [INFO] [stdout] 62 | lexer: lexer.peekable(), [INFO] [stdout] | ^^^^^^^^^^^^^^^^ [INFO] [stdout] | [INFO] [stdout] = warning: this changes meaning in Rust 2024 [INFO] [stdout] = note: for more information, see issue #123739 [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] error: aborting due to 5 previous errors; 37 warnings emitted [INFO] [stdout] [INFO] [stdout] [INFO] [stderr] error: could not compile `rust-scheme` (lib test) due to 6 previous errors; 70 warnings emitted [INFO] running `Command { std: "docker" "inspect" "40ad9a58dd92d36926622387a61bfeba8ca28f99fa6afa88c62adbf6f4927e2e", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "40ad9a58dd92d36926622387a61bfeba8ca28f99fa6afa88c62adbf6f4927e2e", kill_on_drop: false }` [INFO] [stdout] 40ad9a58dd92d36926622387a61bfeba8ca28f99fa6afa88c62adbf6f4927e2e