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