diff --git a/src/test/compile-fail/macro-at-most-once-rep-ambig.rs b/src/test/compile-fail/macro-at-most-once-rep-ambig.rs new file mode 100644 index 00000000000..b0a6ec145e1 --- /dev/null +++ b/src/test/compile-fail/macro-at-most-once-rep-ambig.rs @@ -0,0 +1,26 @@ +// Copyright 2012 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 { + ($(a)?) => {} +} + +macro_rules! bar { + ($(a)?+) => {} +} + +pub fn main() { + foo!(a?a?a); //~ ERROR no rules expected the token `?` + foo!(a?a); //~ ERROR no rules expected the token `?` + foo!(a?); //~ ERROR no rules expected the token `?` + bar!(); //~ ERROR no rules expected the token `)` + bar!(a?); //~ ERROR no rules expected the token `?` +} + diff --git a/src/test/run-pass/macro-at-most-once-rep.rs b/src/test/run-pass/macro-at-most-once-rep.rs new file mode 100644 index 00000000000..fa1f90bf6ef --- /dev/null +++ b/src/test/run-pass/macro-at-most-once-rep.rs @@ -0,0 +1,25 @@ +// Copyright 2012 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 { + ($(a)?) => {} +} + +macro_rules! bar { + ($(a)?+) => {} +} + +pub fn main() { + foo!(); + foo!(a); + bar!(a); + bar!(a?a); + bar!(a?a?a); +}