mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-15 11:50:45 +00:00
10 lines
98 B
Rust
10 lines
98 B
Rust
fn foo() {
|
|
let y = 5;
|
|
fn bar() -> u32 {
|
|
y //~ ERROR E0434
|
|
}
|
|
}
|
|
|
|
fn main () {
|
|
}
|