Sign in
android
/
toolchain
/
rustc
/
43f0694b1feb1296004d84509e01177159e71be0
/
.
/
src
/
test
/
ui
/
issues
/
issue-18088.rs
blob: 06f259958f82236d83d172e62cadfbf54f274d7a [
file
] [
log
] [
blame
]
// build-pass (FIXME(62277): could be check-pass?)
pub
trait
Indexable
<
T
>:
std
::
ops
::
Index
<
usize
,
Output
=
T
>
{
fn
index2
(&
self
,
i
:
usize
)
->
&
T
{
&
self
[
i
]
}
}
fn
main
()
{}