summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/issue-104086-suggest-let.stderr
blob: fb4ea3121ac677b7a4b6dababc59f7c1952f6ddb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:2:5
   |
LL |     x = x = x;
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = x = x;
   |     +++

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:2:9
   |
LL |     x = x = x;
   |         ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:2:13
   |
LL |     x = x = x;
   |             ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:7:5
   |
LL |     x = y = y = y;
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = y = y = y;
   |     +++

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:7:9
   |
LL |     x = y = y = y;
   |         ^ not found in this scope

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:7:13
   |
LL |     x = y = y = y;
   |             ^ not found in this scope

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:7:17
   |
LL |     x = y = y = y;
   |                 ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:13:5
   |
LL |     x = y = y;
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = y = y;
   |     +++

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:13:9
   |
LL |     x = y = y;
   |         ^ not found in this scope

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:13:13
   |
LL |     x = y = y;
   |             ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:18:5
   |
LL |     x = x = y;
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = x = y;
   |     +++

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:18:9
   |
LL |     x = x = y;
   |         ^ not found in this scope

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:18:13
   |
LL |     x = x = y;
   |             ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:23:5
   |
LL |     x = x; // will suggest add `let`
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = x; // will suggest add `let`
   |     +++

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:23:9
   |
LL |     x = x; // will suggest add `let`
   |         ^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/issue-104086-suggest-let.rs:27:5
   |
LL |     x = y // will suggest add `let`
   |     ^
   |
help: you might have meant to introduce a new binding
   |
LL |     let x = y // will suggest add `let`
   |     +++

error[E0425]: cannot find value `y` in this scope
  --> $DIR/issue-104086-suggest-let.rs:27:9
   |
LL |     x = y // will suggest add `let`
   |         ^ not found in this scope

error: aborting due to 17 previous errors

For more information about this error, try `rustc --explain E0425`.