2018-07-21 20:59:44 -07:00
|
|
|
// compile-flags: --edition 2018
|
|
|
|
|
2017-02-17 15:12:47 -08:00
|
|
|
pub fn main() {
|
2018-07-21 20:59:44 -07:00
|
|
|
let try_result: Option<_> = try { //~ ERROR `try` expression is experimental
|
2017-02-17 15:12:47 -08:00
|
|
|
let x = 5;
|
|
|
|
x
|
|
|
|
};
|
2018-07-21 20:59:44 -07:00
|
|
|
assert_eq!(try_result, Some(5));
|
2017-02-17 15:12:47 -08:00
|
|
|
}
|