summaryrefslogtreecommitdiff
path: root/lib/libproc_macro
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libproc_macro')
-rw-r--r--lib/libproc_macro/src/lib.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/libproc_macro/src/lib.rs b/lib/libproc_macro/src/lib.rs
index 6d094893..9a19dafb 100644
--- a/lib/libproc_macro/src/lib.rs
+++ b/lib/libproc_macro/src/lib.rs
@@ -274,6 +274,9 @@ impl FromStr for TokenStream {
{
// Could be an ident starting with 'b', or it's just 'b'
// - Fall through
+ let ident = get_ident(&mut it, "b".into());
+ rv.push(Token::Ident(ident));
+ continue 'outer;
}
}