rust/tests/ui/resolve/resolve-assoc-suggestions.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

74 lines
2.0 KiB
Plaintext
Raw Normal View History

error[E0412]: cannot find type `field` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:16:16
|
2018-02-22 18:42:32 -06:00
LL | let _: field;
| ^^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `field` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:18:13
|
2018-02-22 18:42:32 -06:00
LL | let field(..);
| ^^^^^ not found in this scope
error[E0425]: cannot find value `field` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:20:9
|
2018-02-22 18:42:32 -06:00
LL | field;
| ^^^^^
|
help: you might have meant to use the available field
|
LL | self.field;
| +++++
error[E0412]: cannot find type `Type` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:23:16
|
2018-02-22 18:42:32 -06:00
LL | let _: Type;
| ^^^^
|
help: you might have meant to use the associated type
|
LL | let _: Self::Type;
| ++++++
error[E0531]: cannot find tuple struct or tuple variant `Type` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:25:13
|
2018-02-22 18:42:32 -06:00
LL | let Type(..);
| ^^^^ not found in this scope
error[E0425]: cannot find value `Type` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:27:9
|
2018-02-22 18:42:32 -06:00
LL | Type;
| ^^^^ not found in this scope
error[E0412]: cannot find type `method` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:30:16
|
2018-02-22 18:42:32 -06:00
LL | let _: method;
| ^^^^^^ not found in this scope
error[E0531]: cannot find tuple struct or tuple variant `method` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:32:13
|
2018-02-22 18:42:32 -06:00
LL | let method(..);
| ^^^^^^ not found in this scope
error[E0425]: cannot find value `method` in this scope
2018-12-25 09:56:47 -06:00
--> $DIR/resolve-assoc-suggestions.rs:34:9
|
2018-02-22 18:42:32 -06:00
LL | method;
| ^^^^^^
|
help: you might have meant to refer to the method
|
LL | self.method;
| +++++
error: aborting due to 9 previous errors
2019-09-14 09:22:14 -05:00
Some errors have detailed explanations: E0412, E0425, E0531.
2018-03-03 08:59:40 -06:00
For more information about an error, try `rustc --explain E0412`.