2015-08-14 23:26:19 +02:00
|
|
|
macro_rules! mac {
|
2020-03-17 12:12:57 +01:00
|
|
|
( $($v:tt)* ) => {
|
|
|
|
|
$v
|
|
|
|
|
//~^ ERROR still repeating at this depth
|
|
|
|
|
//~| ERROR still repeating at this depth
|
|
|
|
|
};
|
2015-08-14 23:26:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {
|
|
|
|
|
mac!(0);
|
2020-03-17 12:12:57 +01:00
|
|
|
mac!(1);
|
2015-08-14 23:26:19 +02:00
|
|
|
}
|