Skip to content

Commit

Permalink
Auto merge of #27691 - jonas-schievink:for-macro, r=alexcrichton
Browse files Browse the repository at this point in the history
Closes #27004
  • Loading branch information
bors committed Aug 12, 2015
2 parents d07d465 + a016dfb commit 6a5c4e7
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/ext/expand.rs
Expand Up @@ -400,7 +400,7 @@ pub fn expand_expr(e: P<ast::Expr>, fld: &mut MacroExpander) -> P<ast::Expr> {
// `::std::option::Option::Some(<pat>) => <body>`
let pat_arm = {
let body_expr = fld.cx.expr_block(body);
let pat = noop_fold_pat(pat, fld);
let pat = fld.fold_pat(pat);
let some_pat = fld.cx.pat_some(pat_span, pat);

fld.cx.arm(pat_span, vec![some_pat], body_expr)
Expand Down
20 changes: 20 additions & 0 deletions src/test/run-pass/for-loop-macro.rs
@@ -0,0 +1,20 @@
// Copyright 2015 The Rust Project Developers. See the COPYRIGHT
// file at the top-level directory of this distribution and at
// http://rust-lang.org/COPYRIGHT.
//
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
// option. This file may not be copied, modified, or distributed
// except according to those terms.

macro_rules! var {
( $name:ident ) => ( $name );
}

pub fn main() {
let x = [ 3, 3, 3 ];
for var!(i) in &x {
assert_eq!(*i, 3);
}
}

0 comments on commit 6a5c4e7

Please sign in to comment.