]> git.lizzy.rs Git - rust.git/blob - src/test/run-pass/issue-36023.rs
Auto merge of #35856 - phimuemue:master, r=brson
[rust.git] / src / test / run-pass / issue-36023.rs
1 // Copyright 2016 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution and at
3 // http://rust-lang.org/COPYRIGHT.
4 //
5 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
6 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
7 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
8 // option. This file may not be copied, modified, or distributed
9 // except according to those terms.
10
11 // min-llvm-version 3.9
12
13 use std::ops::Deref;
14
15 fn main() {
16     if env_var("FOOBAR").as_ref().map(Deref::deref).ok() == Some("yes") {
17         panic!()
18     }
19
20     let env_home: Result<String, ()> = Ok("foo-bar-baz".to_string());
21     let env_home = env_home.as_ref().map(Deref::deref).ok();
22
23     if env_home == Some("") { panic!() }
24 }
25
26 #[inline(never)]
27 fn env_var(s: &str) -> Result<String, VarError> {
28     Err(VarError::NotPresent)
29 }
30
31 pub enum VarError {
32     NotPresent,
33     NotUnicode(String),
34 }