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.
1 parent c923196 commit 224e40bCopy full SHA for 224e40b
guide/expressions.md
@@ -661,7 +661,7 @@ match foo {
661
```
662
663
If the body is a single expression with no line comments and not a control flow
664
-expression, then it may be started on the same line as the right-hand side. If
+expression nor a macro call expression, then it may be started on the same line as the right-hand side. If
665
not, then it must be in a block. Example,
666
667
```rust
@@ -681,6 +681,9 @@ match foo {
681
another_argument,
682
)
683
}
684
+ baz => {
685
+ macro_call!()
686
+ }
687
688
689
0 commit comments