mirror of
https://git.proxmox.com/git/rustc
synced 2025-07-24 11:00:40 +00:00
8 lines
139 B
Rust
8 lines
139 B
Rust
struct X<const N: usize = {
|
|
(||1usize)()
|
|
//~^ ERROR cannot call non-const closure
|
|
//~| ERROR the trait bound
|
|
}>;
|
|
|
|
fn main() {}
|