Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
tests
/
ui
/
resolve
/
unresolved-module-error-33293.rs
blob: 18906e610dca53a5662e7fd29b468cfb289e3ab4 [
file
]
// https://github.com/rust-lang/rust/issues/33293
fn
main
()
{
match
0
{
aaa
::
bbb
(
_
)
=>
()
//~^ ERROR: cannot find module or crate `aaa`
};
}