mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-30 18:53:39 +00:00
Fix styles
This commit is contained in:
parent
ccab6afabc
commit
1284bc0af3
@ -230,7 +230,7 @@ fn opt_item_without_modifiers(p: &mut Parser, m: Marker) -> Result<(), Marker> {
|
||||
IDENT if p.at_contextual_kw(T![macro_rules]) && p.nth(1) == BANG => macro_rules(p, m),
|
||||
|
||||
T![const] if (la == IDENT || la == T![_] || la == T![mut]) => consts::konst(p, m),
|
||||
T![static] if (la != PIPE ) => consts::static_(p, m),
|
||||
T![static] if la != PIPE => consts::static_(p, m),
|
||||
|
||||
_ => return Err(m),
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user