]> git.lizzy.rs Git - rust.git/blob - tests/ui/extoption_env-not-defined.rs
Rollup merge of #106470 - ehuss:tidy-no-wasm, r=Mark-Simulacrum
[rust.git] / tests / ui / extoption_env-not-defined.rs
1 // run-pass
2
3 pub fn main() {
4     assert!(option_env!("__HOPEFULLY_DOESNT_EXIST__").is_none());
5 }