Sign in
android
/
toolchain
/
rustc
/
635618df8991b8a005e435895ea0b1eee7e3faf0
/
.
/
tests
/
ui
/
imports
/
issue-53565.rs
blob: 114a53a92caf1f67b881d2ac64e81a3078d5dacb [
file
] [
log
] [
blame
]
use
std
::
time
::{
foo
,
bar
,
buzz
};
//~^ ERROR unresolved imports
use
std
::
time
::{
abc
,
def
};
//~^ ERROR unresolved imports
fn
main
(){
println
!(
"Hello World!"
);
}