Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
118320.rs
blob: 093c58e1c05fb54a3581b2d3e80d873692698a0d [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #118320
//@ edition:2021
#![
feature
(
const_trait_impl
,
effects
,
const_closures
)]
#[
const_trait
]
trait
Bar
{
fn
foo
(&
self
);
}
impl
Bar
for
()
{}
const
FOO
:
()
=
{
(
const
||
(()).
foo
())();
};