rust-clippy/tests/ui/use_self.stderr

201 lines
6.2 KiB
Text
Raw Normal View History

error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:14:21
|
2020-10-16 11:26:02 +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
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:15:13
|
2020-10-16 11:26:02 +00:00
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2019-11-07 03:59:13 +00:00
--> $DIR/use_self.rs:17:22
|
2018-12-27 15:57:55 +00:00
LL | fn test() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:18:13
|
LL | Foo::new()
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:23:25
|
LL | fn default() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:24:13
|
LL | Foo::new()
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:89:24
2018-12-27 15:57:55 +00:00
|
LL | fn bad(foos: &[Foo]) -> 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
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:89:55
|
LL | fn bad(foos: &[Foo]) -> impl Iterator<Item = &Foo> {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:104:13
2018-12-28 19:49:19 +00:00
|
LL | TS(0)
| ^^ help: use the applicable keyword: `Self`
2018-12-27 16:27:42 +00:00
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:112:25
|
2020-10-16 11:26:02 +00:00
LL | fn new() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
...
LL | use_self_expand!(); // Should lint in local macros
| ------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:113:17
|
2020-10-16 11:26:02 +00:00
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
...
LL | use_self_expand!(); // Should lint in local macros
| ------------------- in this macro invocation
|
= note: this error originates in a macro (in Nightly builds, run with -Z macro-backtrace for more info)
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:136:29
2019-01-07 13:11:53 +00:00
|
LL | fn bar() -> Bar {
| ^^^ help: use the applicable keyword: `Self`
2019-01-07 13:11:53 +00:00
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:137:21
2019-01-07 13:11:53 +00:00
|
2020-10-16 11:26:02 +00:00
LL | Bar { foo: Foo {} }
| ^^^ help: use the applicable keyword: `Self`
2019-01-07 13:11:53 +00:00
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:148:21
|
LL | fn baz() -> Foo {
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:149:13
|
LL | Foo {}
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:166:21
|
LL | let _ = Enum::B(42);
| ^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00: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-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:168:21
|
LL | let _ = Enum::A;
| ^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:210:13
|
LL | nested::A::fun_1();
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:211:13
|
LL | nested::A::A;
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:213:13
|
LL | nested::A {};
| ^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:232:13
|
LL | TestStruct::from_something()
| ^^^^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:246:25
|
LL | async fn g() -> S {
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:247:13
|
LL | S {}
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:251:16
2019-11-07 03:59:13 +00:00
|
2020-10-16 11:26:02 +00:00
LL | &p[S::A..S::B]
| ^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:251:22
|
LL | &p[S::A..S::B]
| ^ help: use the applicable keyword: `Self`
2019-11-07 03:59:13 +00:00
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:274:29
2019-11-07 03:59:13 +00:00
|
LL | fn foo(value: T) -> Foo<T> {
| ^^^^^^ help: use the applicable keyword: `Self`
2019-11-07 03:59:13 +00:00
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:275:13
|
LL | Foo { value }
| ^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
--> $DIR/use_self.rs:312:21
|
LL | type From = T::From;
| ^^^^^^^ help: use the applicable keyword: `Self`
error: unnecessary structure name repetition
2020-10-16 11:26:02 +00:00
--> $DIR/use_self.rs:313:19
|
LL | type To = T::To;
| ^^^^^ help: use the applicable keyword: `Self`
2020-10-16 11:26:02 +00:00
error: unnecessary structure name repetition
--> $DIR/use_self.rs:450:13
|
LL | A::new::<submod::B>(submod::B {})
| ^ help: use the applicable keyword: `Self`
error: aborting due to 31 previous errors
2018-01-16 16:06:27 +00:00