Skip to content

Commit b253c56

Browse files
phanschflip1995
authored andcommitted
1 parent 414c34c commit b253c56

File tree

4 files changed

+10
-9
lines changed

4 files changed

+10
-9
lines changed

clippy_lints/src/types.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1533,7 +1533,7 @@ impl LintPass for CharLitAsU8 {
15331533

15341534
impl<'a, 'tcx> LateLintPass<'a, 'tcx> for CharLitAsU8 {
15351535
fn check_expr(&mut self, cx: &LateContext<'a, 'tcx>, expr: &'tcx Expr) {
1536-
use syntax::ast::{LitKind, UintTy};
1536+
use syntax::ast::LitKind;
15371537

15381538
if let ExprKind::Cast(ref e, _) = expr.node {
15391539
if let ExprKind::Lit(ref l) = e.node {
@@ -1818,7 +1818,6 @@ impl Ord for FullInt {
18181818

18191819
fn numeric_cast_precast_bounds<'a>(cx: &LateContext<'_, '_>, expr: &'a Expr) -> Option<(FullInt, FullInt)> {
18201820
use std::*;
1821-
use syntax::ast::{IntTy, UintTy};
18221821

18231822
if let ExprKind::Cast(ref cast_exp, _) = expr.node {
18241823
let pre_cast_ty = cx.tables.expr_ty(cast_exp);

tests/ui/use_self.fixed

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ mod nesting {
239239
struct Foo {}
240240
impl Foo {
241241
fn foo() {
242+
#[allow(unused_imports)]
242243
use self::Foo; // Can't use Self here
243244
struct Bar {
244245
foo: Foo, // Foo != Self

tests/ui/use_self.rs

+1
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,7 @@ mod nesting {
239239
struct Foo {}
240240
impl Foo {
241241
fn foo() {
242+
#[allow(unused_imports)]
242243
use self::Foo; // Can't use Self here
243244
struct Bar {
244245
foo: Foo, // Foo != Self

tests/ui/use_self.stderr

+7-7
Original file line numberDiff line numberDiff line change
@@ -151,43 +151,43 @@ LL | use_self_expand!(); // Should lint in local macros
151151
| ------------------- in this macro invocation
152152

153153
error: unnecessary structure name repetition
154-
--> $DIR/use_self.rs:260:21
154+
--> $DIR/use_self.rs:261:21
155155
|
156156
LL | fn baz() -> Foo {
157157
| ^^^ help: use the applicable keyword: `Self`
158158

159159
error: unnecessary structure name repetition
160-
--> $DIR/use_self.rs:261:13
160+
--> $DIR/use_self.rs:262:13
161161
|
162162
LL | Foo {}
163163
| ^^^ help: use the applicable keyword: `Self`
164164

165165
error: unnecessary structure name repetition
166-
--> $DIR/use_self.rs:248:29
166+
--> $DIR/use_self.rs:249:29
167167
|
168168
LL | fn bar() -> Bar {
169169
| ^^^ help: use the applicable keyword: `Self`
170170

171171
error: unnecessary structure name repetition
172-
--> $DIR/use_self.rs:249:21
172+
--> $DIR/use_self.rs:250:21
173173
|
174174
LL | Bar { foo: Foo {} }
175175
| ^^^ help: use the applicable keyword: `Self`
176176

177177
error: unnecessary structure name repetition
178-
--> $DIR/use_self.rs:303:13
178+
--> $DIR/use_self.rs:304:13
179179
|
180180
LL | nested::A::fun_1();
181181
| ^^^^^^^^^ help: use the applicable keyword: `Self`
182182

183183
error: unnecessary structure name repetition
184-
--> $DIR/use_self.rs:304:13
184+
--> $DIR/use_self.rs:305:13
185185
|
186186
LL | nested::A::A;
187187
| ^^^^^^^^^ help: use the applicable keyword: `Self`
188188

189189
error: unnecessary structure name repetition
190-
--> $DIR/use_self.rs:306:13
190+
--> $DIR/use_self.rs:307:13
191191
|
192192
LL | nested::A {};
193193
| ^^^^^^^^^ help: use the applicable keyword: `Self`

0 commit comments

Comments
 (0)