Sign in
rust
/
rust-lang
/
rust
/
HEAD
/
.
/
tests
/
ui
/
parser
/
import-from-rename.rs
blob: 4929b270e45f9805033d51c506d7e1b29e29d067 [
file
] [
log
] [
blame
]
use
foo
::{
bar
}
as
baz
;
//~ ERROR expected `;`, found keyword `as`
mod
foo
{
pub
fn
bar
()
{}
}
fn
main
()
{
}