]> git.proxmox.com Git - rustc.git/blob - src/tools/clippy/tests/ui/crashes/ice-96721.rs
New upstream version 1.72.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / crashes / ice-96721.rs
1 macro_rules! foo {
2 () => {
3 "bar.rs"
4 };
5 }
6
7 #[path = foo!()] //~ ERROR: malformed `path` attribute
8 mod abc {}
9
10 fn main() {}