]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/issue-14254.stderr
Rollup merge of #87180 - notriddle:notriddle/sidebar-keyboard-mobile, r=GuillaumeGomez
[rust.git] / src / test / ui / resolve / issue-14254.stderr
1 error[E0425]: cannot find function `baz` in this scope
2   --> $DIR/issue-14254.rs:19:9
3    |
4 LL |         baz();
5    |         ^^^ help: you might have meant to call the method: `self.baz`
6
7 error[E0425]: cannot find value `a` in this scope
8   --> $DIR/issue-14254.rs:21:9
9    |
10 LL |         a;
11    |         ^ not found in this scope
12
13 error[E0425]: cannot find function `baz` in this scope
14   --> $DIR/issue-14254.rs:28:9
15    |
16 LL |         baz();
17    |         ^^^ help: you might have meant to call the method: `self.baz`
18
19 error[E0425]: cannot find value `x` in this scope
20   --> $DIR/issue-14254.rs:30:9
21    |
22 LL |         x;
23    |         ^ help: you might have meant to use the available field: `self.x`
24
25 error[E0425]: cannot find value `y` in this scope
26   --> $DIR/issue-14254.rs:32:9
27    |
28 LL |         y;
29    |         ^ help: you might have meant to use the available field: `self.y`
30
31 error[E0425]: cannot find value `a` in this scope
32   --> $DIR/issue-14254.rs:34:9
33    |
34 LL |         a;
35    |         ^ not found in this scope
36
37 error[E0425]: cannot find value `bah` in this scope
38   --> $DIR/issue-14254.rs:36:9
39    |
40 LL |         bah;
41    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
42
43 error[E0425]: cannot find value `b` in this scope
44   --> $DIR/issue-14254.rs:38:9
45    |
46 LL |         b;
47    |         ^ not found in this scope
48
49 error[E0425]: cannot find function `baz` in this scope
50   --> $DIR/issue-14254.rs:45:9
51    |
52 LL |         baz();
53    |         ^^^ help: you might have meant to call the method: `self.baz`
54
55 error[E0425]: cannot find value `x` in this scope
56   --> $DIR/issue-14254.rs:47:9
57    |
58 LL |         x;
59    |         ^ help: you might have meant to use the available field: `self.x`
60
61 error[E0425]: cannot find value `y` in this scope
62   --> $DIR/issue-14254.rs:49:9
63    |
64 LL |         y;
65    |         ^ help: you might have meant to use the available field: `self.y`
66
67 error[E0425]: cannot find value `a` in this scope
68   --> $DIR/issue-14254.rs:51:9
69    |
70 LL |         a;
71    |         ^ not found in this scope
72
73 error[E0425]: cannot find value `bah` in this scope
74   --> $DIR/issue-14254.rs:53:9
75    |
76 LL |         bah;
77    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
78
79 error[E0425]: cannot find value `b` in this scope
80   --> $DIR/issue-14254.rs:55:9
81    |
82 LL |         b;
83    |         ^ not found in this scope
84
85 error[E0425]: cannot find function `baz` in this scope
86   --> $DIR/issue-14254.rs:62:9
87    |
88 LL |         baz();
89    |         ^^^ help: you might have meant to call the method: `self.baz`
90
91 error[E0425]: cannot find value `bah` in this scope
92   --> $DIR/issue-14254.rs:64:9
93    |
94 LL |         bah;
95    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
96
97 error[E0425]: cannot find function `baz` in this scope
98   --> $DIR/issue-14254.rs:71:9
99    |
100 LL |         baz();
101    |         ^^^ help: you might have meant to call the method: `self.baz`
102
103 error[E0425]: cannot find value `bah` in this scope
104   --> $DIR/issue-14254.rs:73:9
105    |
106 LL |         bah;
107    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
108
109 error[E0425]: cannot find function `baz` in this scope
110   --> $DIR/issue-14254.rs:80:9
111    |
112 LL |         baz();
113    |         ^^^ help: you might have meant to call the method: `self.baz`
114
115 error[E0425]: cannot find value `bah` in this scope
116   --> $DIR/issue-14254.rs:82:9
117    |
118 LL |         bah;
119    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
120
121 error[E0425]: cannot find function `baz` in this scope
122   --> $DIR/issue-14254.rs:89:9
123    |
124 LL |         baz();
125    |         ^^^ help: you might have meant to call the method: `self.baz`
126
127 error[E0425]: cannot find value `bah` in this scope
128   --> $DIR/issue-14254.rs:91:9
129    |
130 LL |         bah;
131    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
132
133 error[E0425]: cannot find function `baz` in this scope
134   --> $DIR/issue-14254.rs:98:9
135    |
136 LL |         baz();
137    |         ^^^ help: you might have meant to call the method: `self.baz`
138
139 error[E0425]: cannot find value `bah` in this scope
140   --> $DIR/issue-14254.rs:100:9
141    |
142 LL |         bah;
143    |         ^^^ help: you might have meant to call the associated function: `Self::bah`
144
145 error: aborting due to 24 previous errors
146
147 For more information about this error, try `rustc --explain E0425`.