mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-08 13:35:48 +00:00
11 lines
162 B
Rust
11 lines
162 B
Rust
// check-pass
|
|
|
|
#![feature(const_closures, const_trait_impl)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub const _: () = {
|
|
assert!((const || true)());
|
|
};
|
|
|
|
fn main() {}
|