8 lines
114 B
Rust
8 lines
114 B
Rust
use foo::{bar} as baz; //~ ERROR expected `;`, found keyword `as`
|
|
|
|
mod foo {
|
|
pub fn bar() {}
|
|
}
|
|
|
|
fn main() {
|
|
}
|