Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resolve wildcard_imports pedantic clippy lint
error: usage of wildcard import --> tests/test_size.rs:5:5 | 5 | use syn::*; | ^^^^^^ help: try: `syn::{Expr, Item, Lit, Pat, Type}` | = note: `-D clippy::wildcard-imports` implied by `-D clippy::pedantic` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports error: usage of wildcard import --> tests/test_precedence.rs:350:9 | 350 | use syn::fold::*; | ^^^^^^^^^^^^ help: try: `syn::fold::{Fold, fold_expr, fold_generic_argument, fold_generic_method_argument}` | = note: `-D clippy::wildcard-imports` implied by `-D clippy::pedantic` = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports error: usage of wildcard import --> tests/test_precedence.rs:351:9 | 351 | use syn::*; | ^^^^^^ help: try: `syn::{Expr, ExprParen, GenericArgument, GenericMethodArgument, Pat, Stmt, Type, token}` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports error: usage of wildcard import --> tests/test_precedence.rs:427:9 | 427 | use syn::fold::*; | ^^^^^^^^^^^^ help: try: `syn::fold::Fold` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports error: usage of wildcard import --> tests/test_precedence.rs:429:9 | 429 | use syn::*; | ^^^^^^ help: try: `syn::{Expr, ExprTuple, token}` | = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wildcard_imports
- Loading branch information