rust/tests/ui/crashes/ice-96721.rs

11 lines
138 B
Rust
Raw Normal View History

2022-05-05 08:10:06 -05:00
macro_rules! foo {
() => {
"bar.rs"
};
}
2023-04-20 10:19:36 -05:00
#[path = foo!()] //~ ERROR: malformed `path` attribute
2022-05-05 08:10:06 -05:00
mod abc {}
fn main() {}