Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Questionable type inference fail using complex generics and static methods #4107

Closed
brson opened this issue Dec 4, 2012 · 5 comments
Closed
Labels
A-trait-system Area: Trait system

Comments

@brson
Copy link
Contributor

brson commented Dec 4, 2012

Reduced from lmath. Note that I'm not sure whether this should work. Needs investigation.

fn main() {
    let id: &Mat2<float> = &Matrix::identity();
}

pub trait Index<Index,Result> { }
pub trait Dimensional<T>: Index<uint, T> { }

pub struct Mat2<T> { x: () }
pub struct Vec2<T> { x: () }

pub impl<T> Mat2<T>: Dimensional<Vec2<T>> { }
pub impl<T> Mat2<T>: Index<uint, Vec2<T>> { }

pub impl<T> Vec2<T>: Dimensional<T> { }
pub impl<T> Vec2<T>: Index<uint, T> { }

pub trait Matrix<T,V>: Dimensional<V> {
    static pure fn identity() -> self;
}

pub impl<T> Mat2<T>: Matrix<T, Vec2<T>> {
    static pure fn identity() -> Mat2<T> { fail }
}
/home/brian/dev/rust/src/test/run-pass/lmath.rs:2:26: 2:42 error: mismatched types: expected `@Index<uint,float>` but found `@Index<uint,Vec2<float>>` (expected float but found class Vec2)                         
/home/brian/dev/rust/src/test/run-pass/lmath.rs:2     let id: Mat2<float> = Matrix::identity();                                                                                                                      
                                                                            ^~~~~~~~~~~~~~~~                                                                                                                         
/home/brian/dev/rust/src/test/run-pass/lmath.rs:2:26: 2:42 error: mismatched types: expected `Vec2<float>` but found `float` (expected class Vec2 but found float)                                                   
/home/brian/dev/rust/src/test/run-pass/lmath.rs:2     let id: Mat2<float> = Matrix::identity();                                                                                                                      
                                                                            ^~~~~~~~~~~~~~~~    
@ghost ghost assigned catamorphism Feb 21, 2013
@catamorphism
Copy link
Contributor

Updated test case:

fn main() {
    let id: &Mat2<float> = &Matrix::identity();
}

pub trait Index<Index,Result> { }
pub trait Dimensional<T>: Index<uint, T> { }

pub struct Mat2<T> { x: () }
pub struct Vec2<T> { x: () }

impl<T> Dimensional<Vec2<T>> for Mat2<T> { }
impl<T> Index<uint, Vec2<T>> for Mat2<T> { }

impl<T> Dimensional<T> for Vec2<T> { }
impl<T> Index<uint, T> for Vec2<T> { }

pub trait Matrix<T,V>: Dimensional<V> {
    fn identity() -> Self;
}

impl<T> Matrix<T, Vec2<T>> for Mat2<T> {
    fn identity() -> Mat2<T> { fail!() }
}

I don't think this is critical for 0.6.

@catamorphism
Copy link
Contributor

The test passes now; I'll check it in.

@catamorphism
Copy link
Contributor

Can close when #6483 lands.

@catamorphism
Copy link
Contributor

#6483 has failed twice now due to some unrelated Windows problem that I don't know how to address.

catamorphism added a commit to catamorphism/rust that referenced this issue May 22, 2013
@catamorphism
Copy link
Contributor

Test case added in b17b3f9

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
A-trait-system Area: Trait system
Projects
None yet
Development

No branches or pull requests

2 participants