mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 05:52:04 +00:00
9 lines
117 B
Rust
9 lines
117 B
Rust
#![allow(warnings)]
|
|
|
|
const X: u8 =
|
|
|| -> u8 { 5 }()
|
|
//~^ ERROR cannot call non-const closure
|
|
;
|
|
|
|
fn main() {}
|