11 lines
138 B
Rust
11 lines
138 B
Rust
macro_rules! foo {
|
|
() => {
|
|
"bar.rs"
|
|
};
|
|
}
|
|
|
|
#[path = "file"] //~ ERROR: malformed `path` attribute
|
|
mod abc {}
|
|
|
|
fn main() {}
|