mirror of
https://github.com/rust-lang/rust.git
synced 2024-12-18 03:25:55 +00:00
11 lines
172 B
Rust
11 lines
172 B
Rust
//@ check-pass
|
|
|
|
#![feature(const_closures, const_trait_impl, effects)]
|
|
#![allow(incomplete_features)]
|
|
|
|
pub const _: () = {
|
|
assert!((const || true)());
|
|
};
|
|
|
|
fn main() {}
|