summaryrefslogtreecommitdiffstats
path: root/src/test/ui/issues/issue-33293.rs
blob: a6ef007d51fb5de0d634cf923e9426134e295c61 (plain)
1
2
3
4
5
6
fn main() {
    match 0 {
        aaa::bbb(_) => ()
        //~^ ERROR failed to resolve: use of undeclared crate or module `aaa`
    };
}