Files
rust/tests/ui/traits/index-trait-multiple-impls-15734.rs

62 lines
1.3 KiB
Rust
Raw Normal View History

2025-07-24 19:07:20 +05:00
//! Regression test for https://github.com/rust-lang/rust/issues/15734
//@ run-pass
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
//@[next] compile-flags: -Znext-solver
2015-01-03 10:40:36 -05:00
use std::ops::Index;
struct Mat<T> { data: Vec<T>, cols: usize, }
2014-11-03 00:58:00 +01:00
impl<T> Mat<T> {
fn new(data: Vec<T>, cols: usize) -> Mat<T> {
2014-11-03 00:58:00 +01:00
Mat { data: data, cols: cols }
}
fn row<'a>(&'a self, row: usize) -> Row<&'a Mat<T>> {
2014-11-03 00:58:00 +01:00
Row { mat: self, row: row, }
}
}
impl<T> Index<(usize, usize)> for Mat<T> {
2015-01-03 10:40:36 -05:00
type Output = T;
fn index<'a>(&'a self, (row, col): (usize, usize)) -> &'a T {
2014-11-03 00:58:00 +01:00
&self.data[row * self.cols + col]
}
}
impl<'a, T> Index<(usize, usize)> for &'a Mat<T> {
2015-01-03 10:40:36 -05:00
type Output = T;
fn index<'b>(&'b self, index: (usize, usize)) -> &'b T {
2014-11-03 00:58:00 +01:00
(*self).index(index)
}
}
struct Row<M> { mat: M, row: usize, }
2014-11-03 00:58:00 +01:00
impl<T, M: Index<(usize, usize), Output=T>> Index<usize> for Row<M> {
2015-01-03 10:40:36 -05:00
type Output = T;
fn index<'a>(&'a self, col: usize) -> &'a T {
&self.mat[(self.row, col)]
2014-11-03 00:58:00 +01:00
}
}
fn main() {
let m = Mat::new(vec![1, 2, 3, 4, 5, 6], 3);
2014-11-03 00:58:00 +01: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-03 00:58:00 +01:00
let e = r[2];
assert_eq!(e, 6);
2014-11-03 00:58:00 +01:00
let e: usize = r[2];
assert_eq!(e, 6);
2014-11-03 00:58:00 +01:00
}