about summary refs log tree commit diff
path: root/src/test
diff options
context:
space:
mode:
authorJonas Schievink <jonas@schievink.net>2015-08-12 10:34:14 +0200
committerJonas Schievink <jonas@schievink.net>2015-08-12 10:34:14 +0200
commita016dfb1d110f7dfcd5f8e36ed02c2fd029532d3 (patch)
tree73a7b57b1ad2f579970db11b83a867b5e45992a6 /src/test
parent91c618f133a35ffccc7e03e06f9318c59d091ae3 (diff)
downloadrust-a016dfb1d110f7dfcd5f8e36ed02c2fd029532d3.tar.gz
rust-a016dfb1d110f7dfcd5f8e36ed02c2fd029532d3.zip
Fix macro expansion in for loop pattern
Diffstat (limited to 'src/test')
-rw-r--r--src/test/run-pass/for-loop-macro.rs20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/test/run-pass/for-loop-macro.rs b/src/test/run-pass/for-loop-macro.rs
new file mode 100644
index 00000000000..17c5a98246b
--- /dev/null
+++ b/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);
+    }
+}