|
| 1 | +// Copyright 2016 The Rust Project Developers. See the COPYRIGHT |
| 2 | +// file at the top-level directory of this distribution and at |
| 3 | +// http://rust-lang.org/COPYRIGHT. |
| 4 | +// |
| 5 | +// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or |
| 6 | +// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license |
| 7 | +// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your |
| 8 | +// option. This file may not be copied, modified, or distributed |
| 9 | +// except according to those terms. |
| 10 | + |
| 11 | +macro_rules! foo { |
| 12 | + ( $()* ) => {}; |
| 13 | + //~^ ERROR repetition matches empty token tree |
| 14 | + ( $()+ ) => {}; |
| 15 | + //~^ ERROR repetition matches empty token tree |
| 16 | + |
| 17 | + ( $(),* ) => {}; // PASS |
| 18 | + ( $(),+ ) => {}; // PASS |
| 19 | + |
| 20 | + ( [$()*] ) => {}; |
| 21 | + //~^ ERROR repetition matches empty token tree |
| 22 | + ( [$()+] ) => {}; |
| 23 | + //~^ ERROR repetition matches empty token tree |
| 24 | + |
| 25 | + ( [$(),*] ) => {}; // PASS |
| 26 | + ( [$(),+] ) => {}; // PASS |
| 27 | + |
| 28 | + ( $($()* $(),* $(a)* $(a),* )* ) => {}; |
| 29 | + //~^ ERROR repetition matches empty token tree |
| 30 | + ( $($()* $(),* $(a)* $(a),* )+ ) => {}; |
| 31 | + //~^ ERROR repetition matches empty token tree |
| 32 | + |
| 33 | + ( $(a $(),* $(a)* $(a),* )* ) => {}; // PASS |
| 34 | + ( $($(a)+ $(),* $(a)* $(a),* )+ ) => {}; // PASS |
| 35 | + |
| 36 | + ( $(a $()+)* ) => {}; |
| 37 | + //~^ ERROR repetition matches empty token tree |
| 38 | + ( $(a $()*)+ ) => {}; |
| 39 | + //~^ ERROR repetition matches empty token tree |
| 40 | +} |
| 41 | + |
| 42 | + |
| 43 | +// --- Original Issue --- // |
| 44 | + |
| 45 | +macro_rules! make_vec { |
| 46 | + (a $e1:expr $($(, a $e2:expr)*)*) => ([$e1 $($(, $e2)*)*]); |
| 47 | + //~^ ERROR repetition matches empty token tree |
| 48 | +} |
| 49 | + |
| 50 | +fn main() { |
| 51 | + let _ = make_vec!(a 1, a 2, a 3); |
| 52 | +} |
| 53 | + |
| 54 | + |
| 55 | +// --- Minified Issue --- // |
| 56 | + |
| 57 | +macro_rules! m { |
| 58 | + ( $()* ) => {} |
| 59 | + //~^ ERROR repetition matches empty token tree |
| 60 | +} |
| 61 | + |
| 62 | +m!(); |
0 commit comments