We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e28e487 commit 84dadb6Copy full SHA for 84dadb6
src/libsyntax/ext/base.rs
@@ -255,7 +255,8 @@ pub type MacroExpanderFn =
255
-> Box<dyn MacResult+'cx>;
256
257
impl<F> TTMacroExpander for F
258
- where F: for<'cx> Fn(&'cx mut ExtCtxt, Span, &[tokenstream::TokenTree]) -> Box<dyn MacResult+'cx>
+ where F: for<'cx> Fn(&'cx mut ExtCtxt, Span, &[tokenstream::TokenTree])
259
+ -> Box<dyn MacResult+'cx>
260
{
261
fn expand<'cx>(&self, ecx: &'cx mut ExtCtxt, span: Span, input: TokenStream)
262
-> Box<dyn MacResult+'cx> {
0 commit comments