2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(non_camel_case_types)]
|
|
|
|
#![allow(dead_code)]
|
2018-07-22 03:59:44 +00:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2018-07-25 01:03:25 +00:00
|
|
|
#![feature(try_blocks)]
|
2017-02-17 23:12:47 +00:00
|
|
|
|
2017-03-03 22:41:07 +00:00
|
|
|
struct catch {}
|
|
|
|
|
2017-02-17 23:12:47 +00:00
|
|
|
pub fn main() {
|
2018-07-22 03:59:44 +00:00
|
|
|
let catch_result: Option<_> = try {
|
2017-02-17 23:12:47 +00:00
|
|
|
let x = 5;
|
|
|
|
x
|
|
|
|
};
|
2018-03-25 07:16:16 +00:00
|
|
|
assert_eq!(catch_result, Some(5));
|
2017-02-17 23:12:47 +00:00
|
|
|
|
|
|
|
let mut catch = true;
|
|
|
|
while catch { catch = false; }
|
|
|
|
assert_eq!(catch, false);
|
|
|
|
|
|
|
|
catch = if catch { false } else { true };
|
|
|
|
assert_eq!(catch, true);
|
|
|
|
|
|
|
|
match catch {
|
|
|
|
_ => {}
|
|
|
|
};
|
2017-02-28 19:05:03 +00:00
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
let catch_err: Result<_, i32> = try {
|
2017-02-28 19:05:03 +00:00
|
|
|
Err(22)?;
|
2018-03-25 07:16:16 +00:00
|
|
|
1
|
2017-02-28 19:05:03 +00:00
|
|
|
};
|
|
|
|
assert_eq!(catch_err, Err(22));
|
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
let catch_okay: Result<i32, i32> = try {
|
2017-02-28 19:05:03 +00:00
|
|
|
if false { Err(25)?; }
|
|
|
|
Ok::<(), i32>(())?;
|
2018-03-25 07:16:16 +00:00
|
|
|
28
|
2017-02-28 19:05:03 +00:00
|
|
|
};
|
|
|
|
assert_eq!(catch_okay, Ok(28));
|
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
let catch_from_loop: Result<i32, i32> = try {
|
2017-02-28 19:05:03 +00:00
|
|
|
for i in 0..10 {
|
|
|
|
if i < 5 { Ok::<i32, i32>(i)?; } else { Err(i)?; }
|
|
|
|
}
|
2018-03-25 07:16:16 +00:00
|
|
|
22
|
2017-02-28 19:05:03 +00:00
|
|
|
};
|
|
|
|
assert_eq!(catch_from_loop, Err(5));
|
|
|
|
|
|
|
|
let cfg_init;
|
2018-07-22 03:59:44 +00:00
|
|
|
let _res: Result<(), ()> = try {
|
2017-02-28 19:05:03 +00:00
|
|
|
cfg_init = 5;
|
|
|
|
};
|
|
|
|
assert_eq!(cfg_init, 5);
|
|
|
|
|
2017-03-14 23:48:01 +00:00
|
|
|
let cfg_init_2;
|
2018-07-22 03:59:44 +00:00
|
|
|
let _res: Result<(), ()> = try {
|
2017-03-14 23:48:01 +00:00
|
|
|
cfg_init_2 = 6;
|
|
|
|
Err(())?;
|
|
|
|
};
|
|
|
|
assert_eq!(cfg_init_2, 6);
|
|
|
|
|
2017-02-28 19:05:03 +00:00
|
|
|
let my_string = "test".to_string();
|
2018-07-22 03:59:44 +00:00
|
|
|
let res: Result<&str, ()> = try {
|
2018-03-25 07:16:16 +00:00
|
|
|
// Unfortunately, deref doesn't fire here (#49356)
|
|
|
|
&my_string[..]
|
2017-02-28 19:05:03 +00:00
|
|
|
};
|
|
|
|
assert_eq!(res, Ok("test"));
|
2017-04-01 15:11:17 +00:00
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
let my_opt: Option<_> = try { () };
|
2018-03-25 07:16:16 +00:00
|
|
|
assert_eq!(my_opt, Some(()));
|
2017-04-01 15:11:17 +00:00
|
|
|
|
2018-07-22 03:59:44 +00:00
|
|
|
let my_opt: Option<_> = try { };
|
2018-03-25 07:16:16 +00:00
|
|
|
assert_eq!(my_opt, Some(()));
|
2017-02-17 23:12:47 +00:00
|
|
|
}
|