Sign in
android
/
toolchain
/
rustc
/
d720b3f2ba07cb42ff7b311589c99daefe3aaa22
/
.
/
tests
/
ui
/
imports
/
import-from-missing.rs
blob: 8eae700208f9984d73e729d2d937721b71c6306b [
file
] [
log
] [
blame
]
use
spam
::{
ham
,
eggs
};
//~ ERROR unresolved import `spam::eggs` [E0432]
//~^ no `eggs` in `spam`
mod
spam
{
pub
fn
ham
()
{
}
}
fn
main
()
{
ham
();
// Expect eggs to pass because the compiler inserts a fake name for it
eggs
();
}