mirror of
https://github.com/rust-lang/rust.git
synced 2026-04-27 18:57:42 +03:00
Fix a missing fragment specifier in rustdoc tests
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
macro_rules! morestuff {
|
||||
(
|
||||
<= "space between most kinds of tokens" : 1 $x + @ :: >>= 'static
|
||||
"no space inside paren or bracket" : (2 a) [2 a] $(2 $a:tt)*
|
||||
<= "space between most kinds of tokens" : 1 $x:ident + @ :: >>=
|
||||
'static "no space inside paren or bracket" : (2 a) [2 a] $(2 $a:tt)*
|
||||
"space inside curly brace" : { 2 a }
|
||||
"no space inside empty delimiters" : () [] {}
|
||||
"no space before comma or semicolon" : a, (a), { a }, a; [T; 0];
|
||||
|
||||
@@ -25,7 +25,7 @@ macro_rules! $macro_name {
|
||||
|
||||
//@ snapshot macro_morestuff_pre macro_generated_macro/macro.morestuff.html //pre/text()
|
||||
make_macro!(morestuff
|
||||
"space between most kinds of tokens": 1 $x + @ :: >>= 'static
|
||||
"space between most kinds of tokens": 1 $x:ident + @ :: >>= 'static
|
||||
"no space inside paren or bracket": (2 a) [2 a] $(2 $a:tt)*
|
||||
"space inside curly brace": { 2 a }
|
||||
"no space inside empty delimiters": () [] {}
|
||||
|
||||
Reference in New Issue
Block a user