rust/tests/ui/traits/issue-4107.rs

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

27 lines
625 B
Rust
Raw Normal View History

// run-pass
#![allow(dead_code)]
2013-05-22 21:13:04 +00:00
pub fn main() {
let _id: &Mat2<f64> = &Matrix::identity(1.0);
2013-05-14 20:02:54 +00:00
}
pub trait Index<Index,Result> { fn get(&self, _: Index) -> Result { panic!() } }
pub trait Dimensional<T>: Index<usize, T> { }
2013-05-14 20:02:54 +00:00
pub struct Mat2<T> { x: T }
pub struct Vec2<T> { x: T }
2013-05-14 20:02:54 +00:00
impl<T> Dimensional<Vec2<T>> for Mat2<T> { }
impl<T> Index<usize, Vec2<T>> for Mat2<T> { }
2013-05-14 20:02:54 +00:00
impl<T> Dimensional<T> for Vec2<T> { }
impl<T> Index<usize, T> for Vec2<T> { }
2013-05-14 20:02:54 +00:00
pub trait Matrix<T,V>: Dimensional<V> {
fn identity(t:T) -> Self;
2013-05-14 20:02:54 +00:00
}
impl<T> Matrix<T, Vec2<T>> for Mat2<T> {
fn identity(t:T) -> Mat2<T> { Mat2{ x: t } }
2013-05-14 20:02:54 +00:00
}