blob: 61671b32e9b1540c46666feaf64c0d3e238cce7d [file] [log] [blame]
#![allow(dead_code)]
trait MultiDispatch<T> {
type O;
}
trait Trait: Sized {
type A: MultiDispatch<Self::B, O = Self>;
type B;
fn new<U>(u: U) -> <Self::A as MultiDispatch<U>>::O where Self::A : MultiDispatch<U>;
}
fn test<T: Trait<B=i32>>(b: i32) -> T where T::A: MultiDispatch<i32> { T::new(b) }
//~^ ERROR type mismatch resolving
fn main() {}