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