diff --git a/src/libsyntax/ext/tt/macro_rules.rs b/src/libsyntax/ext/tt/macro_rules.rs index 41d3991aee809..bd033ed7eeafc 100644 --- a/src/libsyntax/ext/tt/macro_rules.rs +++ b/src/libsyntax/ext/tt/macro_rules.rs @@ -179,6 +179,7 @@ fn generic_extension<'cx>(cx: &'cx ExtCtxt, for (i, lhs) in lhses.iter().enumerate() { // try each arm's matchers let lhs_tt = match *lhs { TokenTree::Delimited(_, ref delim) => &delim.tts[..], + TokenTree::Sequence(..) => ref_slice(lhs), _ => cx.span_fatal(sp, "malformed macro lhs") }; diff --git a/src/test/run-pass/macro-lhs-sequence.rs b/src/test/run-pass/macro-lhs-sequence.rs new file mode 100644 index 0000000000000..cb43fa7721e84 --- /dev/null +++ b/src/test/run-pass/macro-lhs-sequence.rs @@ -0,0 +1,17 @@ +// Copyright 2016 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 or the MIT license +// , at your +// option. This file may not be copied, modified, or distributed +// except according to those terms. + +macro_rules! foo( + $($i:ident),+ => () +); + +fn main() { + foo!(bar, baz); +}