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() {}