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