[INFO] fetching crate rust-scheme 0.1.2-alpha.1... [INFO] testing rust-scheme-0.1.2-alpha.1 against try#8de4c7234dd9b97c9d76b58671343fdbbc9a433e+target=x86_64-unknown-linux-musl for musl_upgrade_1_2_5_with_libc_patch_0 [INFO] extracting crate rust-scheme 0.1.2-alpha.1 into /workspace/builds/worker-3-tc1/source [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-3-tc1/source/Cargo.toml [INFO] validating manifest of crates.io crate rust-scheme 0.1.2-alpha.1 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 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" "+8de4c7234dd9b97c9d76b58671343fdbbc9a433e" "fetch" "--manifest-path" "Cargo.toml", kill_on_drop: false }` [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] fd1c7d8201e2e54484095f92151ce9166175b53a267580e0ce609d8cb8c2dc32 [INFO] running `Command { std: "docker" "start" "-a" "fd1c7d8201e2e54484095f92151ce9166175b53a267580e0ce609d8cb8c2dc32", kill_on_drop: false }` [INFO] running `Command { std: "docker" "inspect" "fd1c7d8201e2e54484095f92151ce9166175b53a267580e0ce609d8cb8c2dc32", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "fd1c7d8201e2e54484095f92151ce9166175b53a267580e0ce609d8cb8c2dc32", kill_on_drop: false }` [INFO] [stdout] fd1c7d8201e2e54484095f92151ce9166175b53a267580e0ce609d8cb8c2dc32 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] f21905fdbc3e5a5abe97216c967089f57d2c18cba6a99413a8e253a77eb631a3 [INFO] running `Command { std: "docker" "start" "-a" "f21905fdbc3e5a5abe97216c967089f57d2c18cba6a99413a8e253a77eb631a3", kill_on_drop: false }` [INFO] [stderr] Compiling 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: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: 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/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/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/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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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: 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/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/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/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] 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] 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] 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] 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] 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] 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] 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] 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] 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] [stderr] Finished `dev` profile [unoptimized + debuginfo] target(s) in 1.17s [INFO] [stderr] warning: the following packages contain code that will be rejected by a future version of Rust: rust-scheme v0.1.2-alpha.1 (/opt/rustwide/workdir) [INFO] [stderr] note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 4` [INFO] running `Command { std: "docker" "inspect" "f21905fdbc3e5a5abe97216c967089f57d2c18cba6a99413a8e253a77eb631a3", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "f21905fdbc3e5a5abe97216c967089f57d2c18cba6a99413a8e253a77eb631a3", kill_on_drop: false }` [INFO] [stdout] f21905fdbc3e5a5abe97216c967089f57d2c18cba6a99413a8e253a77eb631a3 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] 7d47f256701301ac51f47d0ee85f3624fa48235fe4f0f02dac6e9ef56d2a7f51 [INFO] running `Command { std: "docker" "start" "-a" "7d47f256701301ac51f47d0ee85f3624fa48235fe4f0f02dac6e9ef56d2a7f51", kill_on_drop: false }` [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: 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/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/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/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] 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] 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] 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] 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] 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] 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] 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] 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] 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] [stderr] Compiling 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: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: 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: 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/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/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] 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/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/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/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/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] 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] 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] 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] 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/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/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] 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] 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] 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/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: 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/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/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/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] 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] 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] 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] 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] 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] 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] 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] 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] 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] 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] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 1.55s [INFO] [stderr] warning: the following packages contain code that will be rejected by a future version of Rust: rust-scheme v0.1.2-alpha.1 (/opt/rustwide/workdir) [INFO] [stderr] note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 5` [INFO] running `Command { std: "docker" "inspect" "7d47f256701301ac51f47d0ee85f3624fa48235fe4f0f02dac6e9ef56d2a7f51", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "7d47f256701301ac51f47d0ee85f3624fa48235fe4f0f02dac6e9ef56d2a7f51", kill_on_drop: false }` [INFO] [stdout] 7d47f256701301ac51f47d0ee85f3624fa48235fe4f0f02dac6e9ef56d2a7f51 [INFO] running `Command { std: "docker" "create" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-tc1/target:/opt/rustwide/target:rw,Z" "-v" "/var/lib/crater-agent-workspace/builds/worker-3-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] ef6c28525942fe56891a47055414af1e27ee4209ffc3115b10a71c161d87d232 [INFO] running `Command { std: "docker" "start" "-a" "ef6c28525942fe56891a47055414af1e27ee4209ffc3115b10a71c161d87d232", kill_on_drop: false }` [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/interpreter.rs:38:50 [INFO] [stderr] | [INFO] [stderr] 38 | (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] = note: `#[warn(unused_parens)]` on by default [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 38 - (Number::Integer(a), Number::Real(b)) => (NumberBinaryOperand::Real(a as f64, b)), [INFO] [stderr] 38 + (Number::Integer(a), Number::Real(b)) => NumberBinaryOperand::Real(a as f64, b), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/interpreter.rs:39:50 [INFO] [stderr] | [INFO] [stderr] 39 | (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 39 - (Number::Real(a), Number::Integer(b)) => (NumberBinaryOperand::Real(a, b as f64)), [INFO] [stderr] 39 + (Number::Real(a), Number::Integer(b)) => NumberBinaryOperand::Real(a, b as f64), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/interpreter.rs:46:53 [INFO] [stderr] | [INFO] [stderr] 46 | (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 46 - (Number::Integer(a), Number::Integer(b)) => (NumberBinaryOperand::Integer(a, b)), [INFO] [stderr] 46 + (Number::Integer(a), Number::Integer(b)) => NumberBinaryOperand::Integer(a, b), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: unnecessary parentheses around match arm expression [INFO] [stderr] --> src/interpreter.rs:47:47 [INFO] [stderr] | [INFO] [stderr] 47 | (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stderr] | ^ ^ [INFO] [stderr] | [INFO] [stderr] help: remove these parentheses [INFO] [stderr] | [INFO] [stderr] 47 - (Number::Real(a), Number::Real(b)) => (NumberBinaryOperand::Real(a, b)), [INFO] [stderr] 47 + (Number::Real(a), Number::Real(b)) => NumberBinaryOperand::Real(a, b), [INFO] [stderr] | [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 140 | 0 => logic_error!("division by exact zero"), [INFO] [stderr] | -------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: `#[warn(semicolon_in_expressions_from_macros)]` on by default [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 151 | _ => logic_error!("unrecognized arithmetic {}", ident), [INFO] [stderr] | ------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 161 | ("-", 0) => logic_error!("'-' needs at least one argument"), [INFO] [stderr] | ----------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 162 | ("/", 0) => logic_error!("'/' needs at least one argument"), [INFO] [stderr] | ----------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 166 | _ => logic_error!("unrecognized procedure {}", ident), [INFO] [stderr] | ------------------------------------------------ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 173 | _ => logic_error!("expect a number!"), [INFO] [stderr] | -------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 247 | Some(other) => logic_error!("{} is not callable", other), [INFO] [stderr] | ----------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 249 | logic_error!("try to call an undefined identifier: {}", ident) [INFO] [stderr] | -------------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: macro invocations at the end of a block are treated as expressions [INFO] [stderr] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `logic_error` [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 260 | _ => logic_error!("expect a procedure here"), [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/interpreter.rs:12:85 [INFO] [stderr] | [INFO] [stderr] 12 | return Err(Error {category: ErrorType::Logic , message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 275 | None => logic_error!("undefined identifier: {}", ident), [INFO] [stderr] | ----------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `logic_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 61 | _ => invalid_token!("Expect delimiter here instead of {}", c), [INFO] [stderr] | -------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 110 | None => invalid_token!("expect character after #\\"), [INFO] [stderr] | -------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 119 | _ => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stderr] | ----------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 121 | None => invalid_token!("expect '(' 't' or 'f' after #"), [INFO] [stderr] | ----------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 221 | None => invalid_token!("Invalid Indentifer {}", identifier_str), [INFO] [stderr] | ------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 271 | None => invalid_token!("Incomplete identifier {}", identifier_str), [INFO] [stderr] | ---------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 300 | _ => invalid_token!("Unknown escape character"), [INFO] [stderr] | ------------------------------------------ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 303 | None => invalid_token!("Incomplete escape character"), [INFO] [stderr] | --------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/lexer.rs:11:86 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Lexical, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 309 | invalid_token!("Unclosed string literal") [INFO] [stderr] | ----------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: macro invocations at the end of a block are treated as expressions [INFO] [stderr] = note: to ignore the value produced by the macro, add a semicolon after the invocation of `invalid_token` [INFO] [stderr] = note: this warning originates in the macro `invalid_token` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 83 | Some(Token::RightParen) => syntax_error!("empty procedure call"), [INFO] [stderr] | ------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 86 | Token::RightParen => syntax_error!("Unmatched Parentheses!"), [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 87 | _ => syntax_error!("unsupported grammar"), [INFO] [stderr] | ------------------------------------ in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 89 | None => syntax_error!("empty input or Unmatched Parentheses"), [INFO] [stderr] | ----------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 103 | _ => syntax_error!("lambda formals must be idenfiers"), [INFO] [stderr] | ------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 117 | _ => syntax_error!("expect identifiers"), [INFO] [stderr] | ----------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 123 | _ => syntax_error!("lambda body empty"), [INFO] [stderr] | ---------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 137 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stderr] | --------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 148 | _ => syntax_error!("expect procedure body"), [INFO] [stderr] | -------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 151 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stderr] | --------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 153 | _ => syntax_error!("define: expect identifier and expression"), [INFO] [stderr] | --------------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 168 | None => syntax_error!("Unmatched Parentheses!"), [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 171 | _ => syntax_error!("Unmatched Parentheses!"), [INFO] [stderr] | --------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: trailing semicolon in macro used in expression position [INFO] [stderr] --> src/parser.rs:11:85 [INFO] [stderr] | [INFO] [stderr] 11 | return Err(Error {category: ErrorType::Syntax, message: format!($($arg)*) }); [INFO] [stderr] | ^ [INFO] [stderr] ... [INFO] [stderr] 176 | _ => syntax_error!("operator should be an expression"), [INFO] [stderr] | ------------------------------------------------- in this macro invocation [INFO] [stderr] | [INFO] [stderr] = warning: this was previously accepted by the compiler but is being phased out; it will become a hard error in a future release! [INFO] [stderr] = note: for more information, see issue #79813 [INFO] [stderr] = note: this warning originates in the macro `syntax_error` (in Nightly builds, run with -Z macro-backtrace for more info) [INFO] [stderr] [INFO] [stderr] warning: `rust-scheme` (lib) generated 37 warnings (run `cargo fix --lib -p rust-scheme` to apply 4 suggestions) [INFO] [stderr] warning: `rust-scheme` (bin "rust-scheme" test) generated 37 warnings (37 duplicates) [INFO] [stderr] warning: `rust-scheme` (lib test) generated 37 warnings (37 duplicates) [INFO] [stderr] Finished `test` profile [unoptimized + debuginfo] target(s) in 0.07s [INFO] [stderr] warning: the following packages contain code that will be rejected by a future version of Rust: rust-scheme v0.1.2-alpha.1 (/opt/rustwide/workdir) [INFO] [stderr] note: to see what the problems were, use the option `--future-incompat-report`, or run `cargo report future-incompatibilities --id 5` [INFO] [stdout] [INFO] [stdout] running 24 tests [INFO] [stderr] Running unittests src/lib.rs (/opt/rustwide/target/x86_64-unknown-linux-musl/debug/deps/rust_scheme-d21efe89581a5c29) [INFO] [stdout] test interpreter::variable_definition ... ok [INFO] [stdout] test interpreter::undefined ... ok [INFO] [stdout] test lexer::character ... ok [INFO] [stdout] test lexer::atmosphere ... ok [INFO] [stdout] test interpreter::arithmetic ... ok [INFO] [stdout] test interpreter::local_environment ... ok [INFO] [stdout] test lexer::empty_text ... ok [INFO] [stdout] test lexer::identifier ... ok [INFO] [stdout] test lexer::number ... ok [INFO] [stdout] test interpreter::number ... ok [INFO] [stdout] test interpreter::procedure_definition ... ok [INFO] [stdout] test interpreter::lambda_call ... ok [INFO] [stdout] test lexer::comment ... ok [INFO] [stdout] test lexer::simple_tokens ... ok [INFO] [stdout] test interpreter::procedure_as_data ... ok [INFO] [stdout] test lexer::string ... ok [INFO] [stdout] test parser::empty ... ok [INFO] [stdout] test parser::identifier ... ok [INFO] [stdout] test parser::integer ... ok [INFO] [stdout] test parser::rational ... ok [INFO] [stdout] test parser::unmatched_parantheses ... ok [INFO] [stdout] test parser::nested_procedure_call ... ok [INFO] [stdout] test parser::procedure_call ... ok [INFO] [stderr] Running unittests src/main.rs (/opt/rustwide/target/x86_64-unknown-linux-musl/debug/deps/rust_scheme-1bf2b8bf607b2f16) [INFO] [stdout] test parser::real_number ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 24 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] [stdout] [INFO] [stdout] running 24 tests [INFO] [stdout] test interpreter::arithmetic ... ok [INFO] [stdout] test interpreter::number ... ok [INFO] [stdout] test interpreter::local_environment ... ok [INFO] [stdout] test interpreter::undefined ... ok [INFO] [stdout] test interpreter::procedure_as_data ... ok [INFO] [stdout] test interpreter::variable_definition ... ok [INFO] [stdout] test lexer::character ... ok [INFO] [stdout] test lexer::atmosphere ... ok [INFO] [stdout] test interpreter::lambda_call ... ok [INFO] [stdout] test interpreter::procedure_definition ... ok [INFO] [stdout] test lexer::comment ... ok [INFO] [stdout] test lexer::empty_text ... ok [INFO] [stdout] test lexer::identifier ... ok [INFO] [stdout] test lexer::number ... ok [INFO] [stdout] test lexer::simple_tokens ... ok [INFO] [stdout] test lexer::string ... ok [INFO] [stdout] test parser::empty ... ok [INFO] [stdout] test parser::identifier ... ok [INFO] [stdout] test parser::integer ... ok [INFO] [stdout] test parser::nested_procedure_call ... ok [INFO] [stdout] test parser::procedure_call ... ok [INFO] [stdout] test parser::rational ... ok [INFO] [stdout] test parser::real_number ... ok [INFO] [stdout] test parser::unmatched_parantheses ... ok [INFO] [stdout] [INFO] [stdout] test result: ok. 24 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out; finished in 0.01s [INFO] [stdout] [INFO] running `Command { std: "docker" "inspect" "ef6c28525942fe56891a47055414af1e27ee4209ffc3115b10a71c161d87d232", kill_on_drop: false }` [INFO] running `Command { std: "docker" "rm" "-f" "ef6c28525942fe56891a47055414af1e27ee4209ffc3115b10a71c161d87d232", kill_on_drop: false }` [INFO] [stdout] ef6c28525942fe56891a47055414af1e27ee4209ffc3115b10a71c161d87d232