Sign in
fuchsia
/
third_party
/
rust
/
17ae00d1228ced4eb5a19fa4371b080da87b6b2a
/
.
/
tests
/
crashes
/
133066.rs
blob: 732ebb7079fd00c4c282d300311348e814716f19 [
file
] [
log
] [
blame
]
//@ known-bug: #133066
trait
Owner
{
const
C
<
const
N
:
u32
>:
u32
;
}
impl
Owner
for
()
{;}
fn
take0
<
const
N
:
u64
>(
_
:
impl
Owner
<
C
<
N
>
=
{
N
}>)
{}
fn
main
()
{
take0
::<
f32
,
>(());
}