Sign in
◑
Theme
rust
/
rust
/
a5a286df89146c64afebc6dcbbd3f61ba67ae53b
/
.
/
tests
/
ui
/
imports
/
import-from-missing.rs
blob: 1dcc3a9013378dccc420c894c0d255ce41dec098 [
file
]
use
spam
::{
ham
,
eggs
};
//~ ERROR unresolved import `spam::eggs` [E0432]
//~^ NOTE 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
();
}