summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/crashes/ice-96721.fixed
blob: 976189d0b6c9a9b2fbd8cbaf47ce673c5d3d6155 (plain)
1
2
3
4
5
6
7
8
9
10
macro_rules! foo {
    () => {
        "bar.rs"
    };
}

#[path = "file"] //~ ERROR: malformed `path` attribute
mod abc {}

fn main() {}