2018-07-21 22:59:44 -05:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2019-10-31 11:28:36 -05:00
|
|
|
pub fn main() {
|
|
|
|
let try_result: Option<_> = try { //~ ERROR `try` expression is experimental
|
2017-02-17 17:12:47 -06:00
|
|
|
let x = 5;
|
|
|
|
x
|
|
|
|
};
|
2018-07-21 22:59:44 -05:00
|
|
|
assert_eq!(try_result, Some(5));
|
2017-02-17 17:12:47 -06:00
|
|
|
}
|