rust/tests/ui/parser/try-with-nonterminal-block.rs
2023-07-22 15:22:12 +00:00

20 lines
257 B
Rust

// check-pass
// edition:2021
#![feature(try_blocks)]
macro_rules! create_try {
($body:block) => {
try $body
};
}
fn main() {
let x: Option<&str> = create_try! {{
None?;
"Hello world"
}};
println!("{x:?}");
}