Expand wildcard import

This commit is contained in:
David Tolnay 2020-10-24 11:21:02 -07:00
parent ce86fcecf3
commit f1f86306dc
No known key found for this signature in database
GPG Key ID: F9BA143B95FF6D82

View File

@ -253,7 +253,9 @@ mod parsing {
use quote::quote;
use std::collections::{BTreeMap, BTreeSet};
use syn::parse::{ParseStream, Result};
use syn::*;
use syn::{
braced, bracketed, parenthesized, parse_quote, token, Attribute, Ident, LitStr, Path, Token,
};
use syn_codegen as types;
fn peek_tag(input: ParseStream, tag: &str) -> bool {