Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
//@ run-pass
macro_rules! var {
( $name:ident ) => ( $name );
}
pub fn main() {
let x = [ 3, 3, 3 ];
for var!(i) in &x {
assert_eq!(*i, 3);