Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
crashes
/
131046.rs
blob: 2638705ae18b234b103687b3d5010425ef56ec3d [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #131046
trait
Owner
{
const
C
<
const
N
:
u32
>:
u32
;
}
impl
Owner
for
()
{
const
C
<
const
N
:
u32
>:
u32
=
N
;
}
fn
take0
<
const
N
:
u64
>(
_
:
impl
Owner
<
C
<
N
>
=
{
N
}>)
{}
fn
main
()
{
take0
::<
128
>(());
}