You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use std::marker::PhantomData;structFoo<T:Bar>(PhantomData<T>);traitBar:Sized{fnbar(n:usize) -> Foo<Self>;}structA;structB;implBarforA{fnbar(n:usize) -> Foo<A>{unimplemented!()}}implBarforB{fnbar(n:usize) -> Foo<A>{// should be Foo<B>unimplemented!()}}fnmain(){}
causes on current nightly (rustc 1.13.0-nightly (3c5a0fa45 2016-08-22)):
causes on current nightly (
rustc 1.13.0-nightly (3c5a0fa45 2016-08-22)
):The text was updated successfully, but these errors were encountered: