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
When using a trait with an associated type as a bound on a type argument, its associated types are treated as arguments rather than as determined by the impl:
traitFoo{typeT;}traitBar<F:Foo>{fnbar(foo:&F);}
error: wrong number of type arguments: expected 1, found 0