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
1.rs:12:25: 12:28 error: unsupported associated type binding
1.rs:12 let r: <Self as Foo>::T = Int::one();
^~~
error: aborting due to previous error
This can be worked around by making that Int::one() expression into a method of the trait returning <Self as Foo>::T, but then that method would become public as well, which may not be desirable.