We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
When specifying a trait with a bound as a closure argument, there is currently a parser ambiguity:
trait Trait {} fn foo(arg: |&Trait:Send|) {}
Is arg a closure that takes an argument of type Send, or does it take an argument of type &Trait:Send.
arg
Send
&Trait:Send
Nominating.