mirror of
https://github.com/rust-lang/rust-clippy
synced 2024-11-14 00:47:16 +00:00
10 lines
138 B
Rust
10 lines
138 B
Rust
macro_rules! foo {
|
|
() => {
|
|
"bar.rs"
|
|
};
|
|
}
|
|
|
|
#[path = "file"] //~ ERROR: malformed `path` attribute
|
|
mod abc {}
|
|
|
|
fn main() {}
|