]> git.lizzy.rs Git - rust.git/commitdiff
Fix macro expansion in for loop pattern
authorJonas Schievink <jonas@schievink.net>
Wed, 12 Aug 2015 08:34:14 +0000 (10:34 +0200)
committerJonas Schievink <jonas@schievink.net>
Wed, 12 Aug 2015 08:34:14 +0000 (10:34 +0200)
src/libsyntax/ext/expand.rs
src/test/run-pass/for-loop-macro.rs [new file with mode: 0644]

index cd60ee0691c13e5d649b2521aa0e0ca4868169a7..6c09d6c107e6ddd27273e28a444169b42d8c4f91 100644 (file)
@@ -400,7 +400,7 @@ fn allow_unstable(fld: &mut MacroExpander, span: Span) -> Span {
             // `::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)
diff --git a/src/test/run-pass/for-loop-macro.rs b/src/test/run-pass/for-loop-macro.rs
new file mode 100644 (file)
index 0000000..17c5a98
--- /dev/null
@@ -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);
+    }
+}