1
Fork 0

Run rustfix

This commit is contained in:
Mateusz Mikuła 2018-05-30 10:15:50 +02:00 committed by Mateusz Mikuła
parent 26f3feb980
commit 424a33720d
112 changed files with 182 additions and 182 deletions

View file

@ -1,6 +1,6 @@
use syntax::ast::{Expr, ExprKind, UnOp};
use rustc::lint::*;
use utils::{snippet, span_lint_and_sugg};
use crate::utils::{snippet, span_lint_and_sugg};
/// **What it does:** Checks for usage of `*&` and `*&mut` in expressions.
///