summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/option_env_unwrap.stderr
blob: bc188a07e9e0a9a3695479ed39c23cee750f93ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:18:13
   |
LL |     let _ = option_env!("PATH").unwrap();
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using the `env!` macro instead
   = note: `-D clippy::option-env-unwrap` implied by `-D warnings`

error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:19:13
   |
LL |     let _ = option_env!("PATH").expect("environment variable PATH isn't set");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using the `env!` macro instead

error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:10:9
   |
LL |         option_env!($env).unwrap()
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL |     let _ = option_env_unwrap!("PATH");
   |             -------------------------- in this macro invocation
   |
   = help: consider using the `env!` macro instead
   = note: this error originates in the macro `option_env_unwrap` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:13:9
   |
LL |         option_env!($env).expect($message)
   |         ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
...
LL |     let _ = option_env_unwrap!("PATH", "environment variable PATH isn't set");
   |             ----------------------------------------------------------------- in this macro invocation
   |
   = help: consider using the `env!` macro instead
   = note: this error originates in the macro `option_env_unwrap` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:22:13
   |
LL |     let _ = option_env_unwrap_external!("PATH");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using the `env!` macro instead
   = note: this error originates in the macro `option_env_unwrap_external` (in Nightly builds, run with -Z macro-backtrace for more info)

error: this will panic at run-time if the environment variable doesn't exist at compile-time
  --> $DIR/option_env_unwrap.rs:23:13
   |
LL |     let _ = option_env_unwrap_external!("PATH", "environment variable PATH isn't set");
   |             ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
   |
   = help: consider using the `env!` macro instead
   = note: this error originates in the macro `option_env_unwrap_external` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 6 previous errors