Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
// run-pass
macro_rules! do_block{
($val:block) => {$val}
}
fn main() {
let s;
do_block!({ s = "it works!"; });
assert_eq!(s, "it works!");