For macros that are implemented on the compiler, we do *not* mention the `-Zmacro-backtrace` flag. This includes `derive`s and standard macros.
15 lines
438 B
Plaintext
15 lines
438 B
Plaintext
error: environment variable `NON_UNICODE_VAR` is not a valid Unicode string
|
|
--> non_unicode_env.rs:2:13
|
|
|
|
|
2 | let _ = env!("NON_UNICODE_VAR");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: environment variable `NON_UNICODE_VAR` is not a valid Unicode string
|
|
--> non_unicode_env.rs:3:13
|
|
|
|
|
3 | let _ = option_env!("NON_UNICODE_VAR");
|
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
|
|
|
error: aborting due to 2 previous errors
|
|
|