2019-07-26 16:54:25 -05:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 05:20:28 -05:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
#![allow(dead_code)]
|
2016-02-28 16:38:48 -06:00
|
|
|
// `expr?` expands to:
|
|
|
|
//
|
|
|
|
// match expr {
|
|
|
|
// Ok(val) => val,
|
2016-03-26 12:10:05 -05:00
|
|
|
// Err(err) => return Err(From::from(err)),
|
2016-02-28 16:38:48 -06:00
|
|
|
// }
|
|
|
|
//
|
2018-11-26 20:59:49 -06:00
|
|
|
// This test verifies that the expansion is hygienic, i.e., it's not affected by other `val` and
|
2016-02-28 16:38:48 -06:00
|
|
|
// `err` bindings that may be in scope.
|
|
|
|
|
|
|
|
use std::num::ParseIntError;
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
assert_eq!(parse(), Ok(1));
|
|
|
|
}
|
|
|
|
|
|
|
|
fn parse() -> Result<i32, ParseIntError> {
|
|
|
|
const val: char = 'a';
|
|
|
|
const err: char = 'b';
|
|
|
|
|
|
|
|
Ok("1".parse::<i32>()?)
|
|
|
|
}
|