Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
call.rs
blob: af2f7caf88c751b032af38506e75ab851ff3cf1a [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
//@ compile-flags: -Znext-solver
#![
feature
(
const_closures
,
const_trait_impl
,
effects
)]
#![
allow
(
incomplete_features
)]
pub
const
_
:
()
=
{
assert
!((
const
||
true
)());
};
fn
main
()
{}