mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
68359e2284
Fix invalid silencing of parsing error
Given
```rust
macro_rules! a {
( ) => {
impl<'b> c for d {
e::<f'g>
}
};
}
```
ensure an error is emitted.
Fix #123079.