about summary refs log tree commit diff
path: root/tests/ui/issues/issue-33293.rs
blob: 115ae3aad204cc169f2beb31167af5fe014e2eb8 (plain)
1
2
3
4
5
6
fn main() {
    match 0 {
        aaa::bbb(_) => ()
        //~^ ERROR failed to resolve: use of unresolved module or unlinked crate `aaa`
    };
}