2020-03-17 03:37:59 -05:00
|
|
|
macro_rules! test {
|
|
|
|
($a, $b) => {
|
|
|
|
//~^ ERROR missing fragment
|
|
|
|
//~| ERROR missing fragment
|
2022-04-08 08:04:37 -05:00
|
|
|
//~| ERROR missing fragment
|
|
|
|
//~| WARN this was previously accepted
|
2020-12-19 15:30:56 -06:00
|
|
|
//~| WARN this was previously accepted
|
2020-03-17 03:37:59 -05:00
|
|
|
()
|
|
|
|
};
|
|
|
|
}
|
2013-06-27 18:53:40 -05:00
|
|
|
|
|
|
|
fn main() {
|
2014-10-12 06:42:41 -05:00
|
|
|
test!()
|
2013-06-27 18:53:40 -05:00
|
|
|
}
|