]> git.lizzy.rs Git - rust.git/commitdiff
Add a couple of tests
authorMark Mansi <markm@cs.wisc.edu>
Fri, 19 Jan 2018 03:17:27 +0000 (21:17 -0600)
committerMark Mansi <markm@cs.wisc.edu>
Tue, 30 Jan 2018 18:32:41 +0000 (12:32 -0600)
src/test/compile-fail/macro-at-most-once-rep-ambig.rs [new file with mode: 0644]
src/test/run-pass/macro-at-most-once-rep.rs [new file with mode: 0644]

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 (file)
index 0000000..b0a6ec1
--- /dev/null
@@ -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 <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! 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 (file)
index 0000000..fa1f90b
--- /dev/null
@@ -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 <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! foo {
+    ($(a)?) => {}
+}
+
+macro_rules! bar {
+    ($(a)?+) => {}
+}
+
+pub fn main() {
+    foo!();
+    foo!(a);
+    bar!(a);
+    bar!(a?a);
+    bar!(a?a?a);
+}