We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The following code:
fn main() { match () { | () => () } }
is currently pretty-printed as:
fn main() { match () { () => (), } }
If this occurs in a macro invocation, it leads to an instance of #43081