rust/tests/ui/macros/macro-at-most-once-rep-2018-rpass.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

51 lines
999 B
Rust
Raw Normal View History

// run-pass
#![allow(unused_mut)]
// Check that when `?` is followed by what looks like a Kleene operator (?, +, and *)
// then that `?` is not interpreted as a separator. In other words, `$(pat)?+` matches `pat +`
// or `+` but does not match `pat` or `pat ? pat`.
2018-01-29 22:26:11 +00:00
// edition:2018
2018-01-19 03:17:27 +00:00
macro_rules! foo {
// Check for `?`.
($($a:ident)? ? $num:expr) => {
foo!($($a)? ; $num);
};
// Check for `+`.
($($a:ident)? + $num:expr) => {
foo!($($a)? ; $num);
};
// Check for `*`.
($($a:ident)? * $num:expr) => {
foo!($($a)? ; $num);
};
// Check for `;`, not a kleene operator.
($($a:ident)? ; $num:expr) => {
2018-01-29 22:26:11 +00:00
let mut x = 0;
$(
x += $a;
)?
2018-01-29 22:26:11 +00:00
assert_eq!(x, $num);
};
2018-01-19 03:17:27 +00:00
}
pub fn main() {
2018-01-29 22:26:11 +00:00
let a = 1;
// Accept 0 repetitions.
2018-01-29 22:26:11 +00:00
foo!( ; 0);
foo!( + 0);
foo!( * 0);
foo!( ? 0);
// Accept 1 repetition.
2018-01-29 22:26:11 +00:00
foo!(a ; 1);
foo!(a + 1);
foo!(a * 1);
foo!(a ? 1);
2018-01-19 03:17:27 +00:00
}