mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-27 18:56:24 +00:00
9 lines
114 B
Rust
9 lines
114 B
Rust
use foo::{bar} as baz; //~ ERROR expected `;`, found keyword `as`
|
|
|
|
mod foo {
|
|
pub fn bar() {}
|
|
}
|
|
|
|
fn main() {
|
|
}
|