]> git.proxmox.com Git - rustc.git/blob - src/test/ui/resolve/resolve-assoc-suggestions.stderr
New upstream version 1.49.0~beta.4+dfsg1
[rustc.git] / src / test / ui / resolve / resolve-assoc-suggestions.stderr
1 error[E0412]: cannot find type `field` in this scope
2 --> $DIR/resolve-assoc-suggestions.rs:16:16
3 |
4 LL | let _: field;
5 | ^^^^^ not found in this scope
6
7 error[E0531]: cannot find tuple struct or tuple variant `field` in this scope
8 --> $DIR/resolve-assoc-suggestions.rs:18:13
9 |
10 LL | let field(..);
11 | ^^^^^ not found in this scope
12
13 error[E0425]: cannot find value `field` in this scope
14 --> $DIR/resolve-assoc-suggestions.rs:20:9
15 |
16 LL | field;
17 | ^^^^^ help: you might have meant to use the available field: `self.field`
18
19 error[E0412]: cannot find type `Type` in this scope
20 --> $DIR/resolve-assoc-suggestions.rs:23:16
21 |
22 LL | let _: Type;
23 | ^^^^ help: you might have meant to use the associated type: `Self::Type`
24
25 error[E0531]: cannot find tuple struct or tuple variant `Type` in this scope
26 --> $DIR/resolve-assoc-suggestions.rs:25:13
27 |
28 LL | let Type(..);
29 | ^^^^ not found in this scope
30
31 error[E0425]: cannot find value `Type` in this scope
32 --> $DIR/resolve-assoc-suggestions.rs:27:9
33 |
34 LL | Type;
35 | ^^^^ not found in this scope
36
37 error[E0412]: cannot find type `method` in this scope
38 --> $DIR/resolve-assoc-suggestions.rs:30:16
39 |
40 LL | let _: method;
41 | ^^^^^^ not found in this scope
42
43 error[E0531]: cannot find tuple struct or tuple variant `method` in this scope
44 --> $DIR/resolve-assoc-suggestions.rs:32:13
45 |
46 LL | let method(..);
47 | ^^^^^^ not found in this scope
48
49 error[E0425]: cannot find value `method` in this scope
50 --> $DIR/resolve-assoc-suggestions.rs:34:9
51 |
52 LL | method;
53 | ^^^^^^ help: you might have meant to call the method: `self.method`
54
55 error: aborting due to 9 previous errors
56
57 Some errors have detailed explanations: E0412, E0425, E0531.
58 For more information about an error, try `rustc --explain E0412`.