Sign in
android
/
toolchain
/
rustc
/
f7ad1c480b8dc4097ef67cd82ec1c5b706e10950
/
.
/
src
/
test
/
ui
/
const-generics
/
broken-mir-1.rs
blob: 6b6140e3a730cceb03ccb365b112fba2cbf47a7f [
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
()
{}