Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
issues
/
issue-18088.rs
blob: ba198884c639f3e4e9eafb6080808685a8afbf48 [
file
] [
log
] [
blame
] [
edit
]
//@ check-pass
pub
trait
Indexable
<
T
>:
std
::
ops
::
Index
<
usize
,
Output
=
T
>
{
fn
index2
(&
self
,
i
:
usize
)
->
&
T
{
&
self
[
i
]
}
}
fn
main
()
{}