2019-07-26 21:54:25 +00:00
|
|
|
// run-pass
|
|
|
|
|
2018-09-14 10:20:28 +00:00
|
|
|
#![allow(non_upper_case_globals)]
|
|
|
|
#![allow(dead_code)]
|
2016-02-28 22:38:48 +00:00
|
|
|
// `expr?` expands to:
|
|
|
|
//
|
|
|
|
// match expr {
|
|
|
|
// Ok(val) => val,
|
2016-03-26 17:10:05 +00:00
|
|
|
// Err(err) => return Err(From::from(err)),
|
2016-02-28 22:38:48 +00:00
|
|
|
// }
|
|
|
|
//
|
2018-11-27 02:59:49 +00:00
|
|
|
// This test verifies that the expansion is hygienic, i.e., it's not affected by other `val` and
|
2016-02-28 22:38:48 +00: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>()?)
|
|
|
|
}
|