mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-14 21:40:58 +00:00
6 lines
113 B
Rust
6 lines
113 B
Rust
//@ build-pass (FIXME(62277): could be check-pass?)
|
|
|
|
fn main() {
|
|
let x: &'static _ = &|| { let z = 3; z };
|
|
}
|