We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ae34b9d commit 1018385Copy full SHA for 1018385
src/librustc_expand/mbe/transcribe.rs
@@ -119,9 +119,9 @@ pub(super) fn transcribe(
119
let tree = if let Some(tree) = stack.last_mut().unwrap().next() {
120
// If it still has a TokenTree we have not looked at yet, use that tree.
121
tree
122
- }
123
- // The else-case never produces a value for `tree` (it `continue`s or `return`s).
124
- else {
+ } else {
+ // This else-case never produces a value for `tree` (it `continue`s or `return`s).
+
125
// Otherwise, if we have just reached the end of a sequence and we can keep repeating,
126
// go back to the beginning of the sequence.
127
if let Frame::Sequence { idx, sep, .. } = stack.last_mut().unwrap() {
0 commit comments