mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 02:31:13 +00:00
10 lines
159 B
Rust
10 lines
159 B
Rust
//@ edition:2021
|
|
macro_rules! a {
|
|
( ) => {
|
|
impl<'b> c for d {
|
|
e::<f'g> //~ ERROR prefix `f` is unknown
|
|
}
|
|
};
|
|
}
|
|
fn main() {}
|