mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-02 18:27:37 +00:00

For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros.
19 lines
520 B
Plaintext
19 lines
520 B
Plaintext
error: environment variable `oopsie` not defined at compile time
|
|
--> $DIR/builtin-env-issue-114010.rs:4:1
|
|
|
|
|
LL | env![r#"oopsie"#];
|
|
| ^^^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use `std::env::var(r#"oopsie"#)` to read the variable at run time
|
|
|
|
error: environment variable `a""a` not defined at compile time
|
|
--> $DIR/builtin-env-issue-114010.rs:7:1
|
|
|
|
|
LL | env![r#"a""a"#];
|
|
| ^^^^^^^^^^^^^^^
|
|
|
|
|
= help: use `std::env::var(r#"a""a"#)` to read the variable at run time
|
|
|
|
error: aborting due to 2 previous errors
|
|
|