Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
6d71251cf9e40326461f90f8ff9a7024706aea87
/
.
/
tests
/
ui
/
const-generics
/
broken-mir-1.rs
blob: 67b18994785f962216dd5db225c3dffda69b4667 [
file
] [
log
] [
blame
]
//@ run-pass
pub
trait
Foo
{
fn
foo
(&
self
);
}
impl
<
T
,
const
N
:
usize
>
Foo
for
[
T
;
N
]
{
fn
foo
(&
self
)
{
let
_
=
&
self
;
}
}
fn
main
()
{}