Sign in
fuchsia
/
third_party
/
rust
/
23f762d3b15eb897b1fd3199e8c075393b067b68
/
.
/
tests
/
crashes
/
121411.rs
blob: ef7b16579dd582de9c996cef26b0165804ebe7d5 [
file
] [
log
] [
blame
]
//@ 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
(&());