]> git.lizzy.rs Git - rust.git/blob - tests/ui/question_mark.rs
Merge branch 'master' into rustfmt_tests
[rust.git] / tests / ui / question_mark.rs
1 // Copyright 2014-2018 The Rust Project Developers. See the COPYRIGHT
2 // file at the top-level directory of this distribution.
3 //
4 // Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5 // http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6 // <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7 // option. This file may not be copied, modified, or distributed
8 // except according to those terms.
9
10 fn some_func(a: Option<u32>) -> Option<u32> {
11     if a.is_none() {
12         return None;
13     }
14
15     a
16 }
17
18 pub enum SeemsOption<T> {
19     Some(T),
20     None,
21 }
22
23 impl<T> SeemsOption<T> {
24     pub fn is_none(&self) -> bool {
25         match *self {
26             SeemsOption::None => true,
27             SeemsOption::Some(_) => false,
28         }
29     }
30 }
31
32 fn returns_something_similar_to_option(a: SeemsOption<u32>) -> SeemsOption<u32> {
33     if a.is_none() {
34         return SeemsOption::None;
35     }
36
37     a
38 }
39
40 pub struct SomeStruct {
41     pub opt: Option<u32>,
42 }
43
44 impl SomeStruct {
45     pub fn func(&self) -> Option<u32> {
46         if (self.opt).is_none() {
47             return None;
48         }
49
50         self.opt
51     }
52 }
53
54 fn main() {
55     some_func(Some(42));
56     some_func(None);
57
58     let some_struct = SomeStruct { opt: Some(54) };
59     some_struct.func();
60
61     let so = SeemsOption::Some(45);
62     returns_something_similar_to_option(so);
63 }