blob: 45aaf361a9c0e0e2977e9c9770f181440bb9ceef [file] [log] [blame] [edit]
fn main(){ }
fn test_result() -> Result<(),()> {
let a:Option<()> = Some(());
a?;//~ ERROR the `?` operator can only be used
Ok(())
}
fn test_option() -> Option<i32>{
let a:Result<i32, i32> = Ok(5);
a?;//~ ERROR the `?` operator can only be used
Some(5)
}