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