about summary refs log tree commit diff
path: root/src/test/ui/option-to-result.rs
blob: 00e8b5244c54a418883fbc1b2818bd35d9b556f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fn main(){ }

fn test_result() -> Result<(),()> {
    let a:Option<()> = Some(());
    a?;//~ ERROR `?` couldn't convert the error
    Ok(())
}

fn test_option() -> Option<i32>{
    let a:Result<i32, i32> = Ok(5);
    a?;//~ ERROR `?` couldn't convert the error
    Some(5)
}