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
traitTr1<T>{}fnf<T>(_x: ~Tr1<T>){}traitTr2{}implTr2for();fng(_x: ~Tr2:Send){}// fn h1<T>(_x: ~Tr1:Send<T>) {} // error: wrong number of type arguments: expected 1 but found 0// (apparently the <T> parameterizes Send)// fn h2<T>(_x: ~Tr1<T>:Send) {} // error: expected `,` but found `:`fnmain(){}
Seems like both generic parameters and kind bounds are individually okay on paths, but you can't have both right now.
The pretty printer would apparently happily emit the form in h1's declaration, but it's not currently parsed (and possibly ambiguous if there's a context where instead of Send there could be a user-defined trait with a legimitate parameter, not sure if that is possible).
The form in h2 seems somewhat sensible to me if we pretend that type parameters are part of individual path segments now but the kind bounds apply to the type as a whole, but of course the compiler isn't convinced.
Maybe I'm missing something. :)
The text was updated successfully, but these errors were encountered:
Uh, good point. I think I expected the syntax to be ~Tr1:Send<T>,
but I can see why the parser would disagree, and there is a certain
logic to ~Tr1<T>:Send. That might in fact be the better choice.
The previous syntax was `Foo:Bound<trait-parameters>`, but this is a little
ambiguous because it was being parsed as `Foo: (Bound<trait-parameters)` rather
than `Foo: (Bound) <trait-parameters>`
This commit changes the syntax to `Foo<trait-parameters>: Bound` in order to be
clear where the trait parameters are going.
Closes#9265
Seems like both generic parameters and kind bounds are individually okay on paths, but you can't have both right now.
The pretty printer would apparently happily emit the form in
h1
's declaration, but it's not currently parsed (and possibly ambiguous if there's a context where instead ofSend
there could be a user-defined trait with a legimitate parameter, not sure if that is possible).The form in
h2
seems somewhat sensible to me if we pretend that type parameters are part of individual path segments now but the kind bounds apply to the type as a whole, but of course the compiler isn't convinced.Maybe I'm missing something. :)
The text was updated successfully, but these errors were encountered: