rust-clippy/tests/ui/use_self.stderr

137 lines
4.4 KiB
Text
Raw Normal View History

error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:20:21
|
2018-12-27 15:57:55 +00:00
LL | fn new() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
|
= note: `-D clippy::use-self` implied by `-D warnings`
error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:21:13
|
2018-12-27 15:57:55 +00:00
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:23:22
|
2018-12-27 15:57:55 +00:00
LL | fn test() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:24:13
|
2018-12-27 15:57:55 +00:00
LL | Foo::new()
| ^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:29:25
|
2018-12-27 15:57:55 +00:00
LL | fn default() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-10 05:27:19 +00:00
--> $DIR/use_self.rs:30:13
|
2018-12-27 15:57:55 +00:00
LL | Foo::new()
| ^^^^^^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:95:22
2018-07-14 10:18:50 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn refs(p1: &Bad) -> &Bad {
2018-07-14 10:18:50 +00:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:95:31
2018-07-14 10:18:50 +00:00
|
2018-12-27 15:57:55 +00:00
LL | fn refs(p1: &Bad) -> &Bad {
2018-07-14 10:18:50 +00:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:99:37
2018-12-27 15:57:55 +00:00
|
LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:99:53
2018-12-27 15:57:55 +00:00
|
LL | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:103:30
2018-12-27 15:57:55 +00:00
|
LL | fn mut_refs(p1: &mut Bad) -> &mut Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:103:43
2018-12-27 15:57:55 +00:00
|
LL | fn mut_refs(p1: &mut Bad) -> &mut Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:107:28
2018-12-27 15:57:55 +00:00
|
LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:107:46
2018-12-27 15:57:55 +00:00
|
LL | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {}
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:109:20
2018-12-27 15:57:55 +00:00
|
LL | fn vals(_: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-17 06:20:49 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:109:28
2018-12-27 15:57:55 +00:00
|
LL | fn vals(_: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-17 06:20:49 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:110:13
2018-12-27 15:57:55 +00:00
|
LL | Bad::default()
| ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:115:23
2018-12-27 15:57:55 +00:00
|
LL | type Output = Bad;
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:117:27
2018-12-27 15:57:55 +00:00
|
LL | fn mul(self, rhs: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-17 06:20:49 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:117:35
2018-12-27 15:57:55 +00:00
|
LL | fn mul(self, rhs: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 10:18:50 +00:00
2018-10-25 03:28:54 +00:00
error: unnecessary structure name repetition
2018-12-27 08:54:19 +00:00
--> $DIR/use_self.rs:209:56
2018-12-27 15:57:55 +00:00
|
LL | fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
| ^^^ help: use the applicable keyword: `Self`
2018-10-25 03:28:54 +00:00
2018-12-27 16:27:42 +00:00
error: unnecessary structure name repetition
2018-12-28 19:49:19 +00:00
--> $DIR/use_self.rs:224:13
|
LL | TS(0)
| ^^ help: use the applicable keyword: `Self`
2018-12-27 16:27:42 +00:00
error: aborting due to 22 previous errors
2018-01-16 16:06:27 +00:00