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