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
Currently, it's not allowed to specify type args for each path segment.
This problem makes it impossible to call methods in some cases.
e.g.,
structFoo<T>{t:T}impl<T>Foo<T>{fnmethod() -> i32{1}}fnfoo(){// Deciding the `Foo` type is not possible without a type argument for `Foo`.let x = Foo::method()// We need this! let x = Foo<i32>::method()}
The text was updated successfully, but these errors were encountered:
Currently, it's not allowed to specify type args for each path segment.
This problem makes it impossible to call methods in some cases.
e.g.,
The text was updated successfully, but these errors were encountered: