rust/tests/ui/use_self.stderr

161 lines
4.9 KiB
Text
Raw Normal View History

error: unnecessary structure name repetition
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:14:21
|
2018-12-27 16:57:55 +01: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
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:15:13
|
2018-12-27 16:57:55 +01:00
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:17:22
|
2018-12-27 16:57:55 +01:00
LL | fn test() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:18:13
|
2018-12-27 16:57:55 +01:00
LL | Foo::new()
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:23:25
|
2018-12-27 16:57:55 +01:00
LL | fn default() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2019-11-07 04:59:13 +01:00
--> $DIR/use_self.rs:24:13
|
2018-12-27 16:57:55 +01:00
LL | Foo::new()
| ^^^ help: use the applicable keyword: `Self`
2018-07-14 12:18:50 +02:00
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:89:56
2018-12-27 16:57:55 +01:00
|
LL | fn bad(foos: &[Self]) -> impl Iterator<Item = &Foo> {
| ^^^ help: use the applicable keyword: `Self`
2018-10-25 05:28:54 +02:00
2018-12-27 17:27:42 +01:00
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:104:13
2018-12-28 20:49:19 +01:00
|
LL | TS(0)
| ^^ help: use the applicable keyword: `Self`
2018-12-27 17:27:42 +01:00
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:112:25
|
LL | fn new() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
...
LL | use_self_expand!(); // Should lint in local macros
| ------------------- in this macro invocation
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:113:17
|
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
...
LL | use_self_expand!(); // Should lint in local macros
| ------------------- in this macro invocation
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:148:21
|
LL | fn baz() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:149:13
|
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
2019-01-07 14:11:53 +01:00
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:136:29
2019-01-07 14:11:53 +01:00
|
LL | fn bar() -> Bar {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:137:21
2019-01-07 14:11:53 +01:00
|
2019-01-07 14:38:01 +01:00
LL | Bar { foo: Foo {} }
2019-01-07 14:11:53 +01:00
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:166:21
|
LL | let _ = Enum::B(42);
| ^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:167:21
|
LL | let _ = Enum::C { field: true };
| ^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:168:21
|
LL | let _ = Enum::A;
| ^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:199:13
|
LL | nested::A::fun_1();
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:200:13
|
LL | nested::A::A;
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:202:13
|
LL | nested::A {};
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:221:13
|
LL | TestStruct::from_something()
| ^^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:235:25
2019-11-07 04:59:13 +01:00
|
LL | async fn g() -> S {
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:236:13
2019-11-07 04:59:13 +01:00
|
LL | S {}
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:240:16
|
LL | &p[S::A..S::B]
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-01-10 00:56:16 +01:00
--> $DIR/use_self.rs:240:22
|
LL | &p[S::A..S::B]
| ^ help: use the applicable keyword: `Self`
2020-01-10 00:56:16 +01:00
error: aborting due to 25 previous errors
2018-01-16 17:06:27 +01:00