mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 16:40:17 +00:00
9 lines
83 B
Rust
9 lines
83 B
Rust
//@ check-pass
|
|
|
|
const fn x() {
|
|
let t = true;
|
|
let x = || t;
|
|
}
|
|
|
|
fn main() {}
|