Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const-generics
/
broken-mir-1.rs
blob: 67b18994785f962216dd5db225c3dffda69b4667 [
file
] [
log
] [
blame
] [
edit
]
//@ run-pass
pub
trait
Foo
{
fn
foo
(&
self
);
}
impl
<
T
,
const
N
:
usize
>
Foo
for
[
T
;
N
]
{
fn
foo
(&
self
)
{
let
_
=
&
self
;
}
}
fn
main
()
{}