2017-02-17 17:12:47 -06:00
|
|
|
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2018-07-21 22:59:44 -05:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2017-02-17 17:12:47 -06:00
|
|
|
#![feature(catch_expr)]
|
|
|
|
|
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
|
|
|
}
|