rust-clippy/tests/ui/option_env_unwrap.rs

18 lines
754 B
Rust
Raw Normal View History

//@aux-build:proc_macros.rs
2020-02-09 00:44:35 +00:00
#![warn(clippy::option_env_unwrap)]
2021-12-01 14:38:54 +00:00
#![allow(clippy::map_flatten)]
2020-02-09 00:44:35 +00:00
extern crate proc_macros;
use proc_macros::{external, inline_macros};
2020-02-09 00:44:35 +00:00
#[inline_macros]
2020-02-09 00:44:35 +00:00
fn main() {
let _ = option_env!("PATH").unwrap();
let _ = option_env!("PATH").expect("environment variable PATH isn't set");
let _ = option_env!("__Y__do_not_use").unwrap(); // This test only works if you don't have a __Y__do_not_use env variable in your environment.
let _ = inline!(option_env!($"PATH").unwrap());
let _ = inline!(option_env!($"PATH").expect($"environment variable PATH isn't set"));
let _ = external!(option_env!($"PATH").unwrap());
let _ = external!(option_env!($"PATH").expect($"environment variable PATH isn't set"));
2020-02-09 00:44:35 +00:00
}