rust/tests/ui/use_self.stderr

125 lines
4.0 KiB
Plaintext
Raw Normal View History

error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:23:21
|
2018-10-06 18:18:06 +02:00
23 | fn new() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
|
= note: `-D clippy::use-self` implied by `-D warnings`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:24:13
|
2018-10-06 18:18:06 +02:00
24 | Foo {}
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:26:22
|
2018-10-06 18:18:06 +02:00
26 | fn test() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:27:13
|
2018-10-06 18:18:06 +02:00
27 | Foo::new()
| ^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:32:25
|
2018-10-06 18:18:06 +02:00
32 | fn default() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:33:13
|
2018-10-06 18:18:06 +02:00
33 | Foo::new()
| ^^^^^^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:96:22
2018-07-14 12:18:50 +02:00
|
2018-10-06 18:18:06 +02:00
96 | fn refs(p1: &Bad) -> &Bad {
2018-07-14 12:18:50 +02:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:96:31
2018-07-14 12:18:50 +02:00
|
2018-10-06 18:18:06 +02:00
96 | fn refs(p1: &Bad) -> &Bad {
2018-07-14 12:18:50 +02:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:100:37
|
100 | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:100:53
|
100 | fn ref_refs<'a>(p1: &'a &'a Bad) -> &'a &'a Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:104:30
|
104 | fn mut_refs(p1: &mut Bad) -> &mut Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:104:43
|
104 | fn mut_refs(p1: &mut Bad) -> &mut Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:108:28
|
108 | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:108:46
|
108 | fn nested(_p1: Box<Bad>, _p2: (&u8, &Bad)) {
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:111:20
|
2018-10-06 18:18:06 +02:00
111 | fn vals(_: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-17 08:20:49 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:111:28
|
2018-10-06 18:18:06 +02:00
111 | fn vals(_: Bad) -> Bad {
| ^^^ help: use the applicable keyword: `Self`
2018-07-17 08:20:49 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:112:13
2018-07-14 12:18:50 +02:00
|
2018-10-06 18:18:06 +02:00
112 | Bad::default()
2018-07-17 08:20:49 +02:00
| ^^^^^^^^^^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:117:23
2018-07-14 12:18:50 +02:00
|
2018-10-06 18:18:06 +02:00
117 | type Output = Bad;
2018-07-17 08:20:49 +02:00
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:119:27
2018-07-14 12:18:50 +02:00
|
2018-10-06 18:18:06 +02:00
119 | fn mul(self, rhs: Bad) -> Bad {
2018-07-17 08:20:49 +02:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2018-10-06 18:18:06 +02:00
--> $DIR/use_self.rs:119:35
2018-07-17 08:20:49 +02:00
|
2018-10-06 18:18:06 +02:00
119 | fn mul(self, rhs: Bad) -> Bad {
2018-07-17 08:20:49 +02:00
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
2018-07-17 08:20:49 +02:00
error: aborting due to 20 previous errors
2018-01-16 17:06:27 +01:00