Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
121411.rs
blob: ef7b16579dd582de9c996cef26b0165804ebe7d5 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #121411
#![
feature
(
const_trait_impl
,
effects
)]
#[
const_trait
]
trait
Foo
{
fn
into_iter
(&
self
)
{}
}
impl
const
Foo
for
()
{
fn
into_iter
(
a
:
u32
,
b
:
u32
)
{}
}
const
_
:
()
=
Foo
::
into_iter
(&());