mirror of
https://github.com/openharmony/third_party_rust_rust.git
synced 2026-08-28 04:10:09 -04:00
9 lines
121 B
Rust
9 lines
121 B
Rust
macro_rules! foo {
|
|
() => {"bar.rs"};
|
|
}
|
|
|
|
#[path = foo!()] //~ ERROR malformed `path` attribute
|
|
mod abc;
|
|
|
|
fn main() {}
|