mirror of
https://github.com/rust-lang/rust.git
synced 2025-11-25 15:58:31 +00:00
14 lines
323 B
Rust
14 lines
323 B
Rust
macro_rules! m {
|
|
($p: path) => (pub(in $p) struct Z;)
|
|
}
|
|
|
|
struct S<T>(T);
|
|
m!{ crate::S<u8> } //~ ERROR unexpected generic arguments in path
|
|
//~| ERROR failed to resolve: `S` is a struct, not a module [E0433]
|
|
|
|
mod m {
|
|
m!{ crate::m<> } //~ ERROR unexpected generic arguments in path
|
|
}
|
|
|
|
fn main() {}
|