mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 15:08:53 +00:00
9 lines
163 B
Rust
9 lines
163 B
Rust
//@ compile-flags: -Znext-solver
|
|
#![crate_type = "lib"]
|
|
#![feature(const_closures, const_trait_impl)]
|
|
|
|
pub const fn test() {
|
|
let cl = const || {};
|
|
cl();
|
|
}
|