mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
7 lines
150 B
Rust
7 lines
150 B
Rust
//@ error-pattern: can't capture dynamic environment in a fn item
|
|
fn foo() {
|
|
let x: isize;
|
|
fn bar() { log(debug, x); }
|
|
}
|
|
fn main() { foo(); }
|