mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-06 16:48:32 +00:00
7 lines
116 B
Rust
7 lines
116 B
Rust
use m::f as x; //~ ERROR unresolved import `m::f` [E0432]
|
|
//~^ no `f` in `m`
|
|
|
|
mod m {}
|
|
|
|
fn main() {}
|