rust/tests/ui/issues/issue-15734.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

59 lines
1.2 KiB
Rust
Raw Normal View History

// run-pass
// revisions: current next
//[next] compile-flags: -Ztrait-solver=next
2015-01-03 15:40:36 +00:00
use std::ops::Index;
struct Mat<T> { data: Vec<T>, cols: usize, }
2014-11-02 23:58:00 +00:00
impl<T> Mat<T> {
fn new(data: Vec<T>, cols: usize) -> Mat<T> {
2014-11-02 23:58:00 +00:00
Mat { data: data, cols: cols }
}
fn row<'a>(&'a self, row: usize) -> Row<&'a Mat<T>> {
2014-11-02 23:58:00 +00:00
Row { mat: self, row: row, }
}
}
impl<T> Index<(usize, usize)> for Mat<T> {
2015-01-03 15:40:36 +00:00
type Output = T;
fn index<'a>(&'a self, (row, col): (usize, usize)) -> &'a T {
2014-11-02 23:58:00 +00:00
&self.data[row * self.cols + col]
}
}
impl<'a, T> Index<(usize, usize)> for &'a Mat<T> {
2015-01-03 15:40:36 +00:00
type Output = T;
fn index<'b>(&'b self, index: (usize, usize)) -> &'b T {
2014-11-02 23:58:00 +00:00
(*self).index(index)
}
}
struct Row<M> { mat: M, row: usize, }
2014-11-02 23:58:00 +00:00
impl<T, M: Index<(usize, usize), Output=T>> Index<usize> for Row<M> {
2015-01-03 15:40:36 +00:00
type Output = T;
fn index<'a>(&'a self, col: usize) -> &'a T {
&self.mat[(self.row, col)]
2014-11-02 23:58:00 +00:00
}
}
fn main() {
let m = Mat::new(vec![1, 2, 3, 4, 5, 6], 3);
2014-11-02 23:58:00 +00:00
let r = m.row(1);
assert_eq!(r.index(2), &6);
assert_eq!(r[2], 6);
assert_eq!(r[2], 6);
assert_eq!(6, r[2]);
2014-11-02 23:58:00 +00:00
let e = r[2];
assert_eq!(e, 6);
2014-11-02 23:58:00 +00:00
let e: usize = r[2];
assert_eq!(e, 6);
2014-11-02 23:58:00 +00:00
}