about summary refs log tree commit diff
path: root/tests/ui/suggestions/suggest-let-for-assignment.stderr
blob: eb4bfc9a78354ad9081d26572ed8cdf06d83e9bb (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
error[E0425]: cannot find value `demo` in this scope
  --> $DIR/suggest-let-for-assignment.rs:4:5
   |
LL |     demo = 1;
   |     ^^^^
   |
help: you might have meant to introduce a new binding
   |
LL |     let demo = 1;
   |     +++

error[E0425]: cannot find value `demo` in this scope
  --> $DIR/suggest-let-for-assignment.rs:5:10
   |
LL |     dbg!(demo);
   |          ^^^^ not found in this scope

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

error[E0425]: cannot find value `x` in this scope
  --> $DIR/suggest-let-for-assignment.rs:8:23
   |
LL |     println!("x: {}", x);
   |                       ^ not found in this scope

error[E0425]: cannot find value `let_some_variable` in this scope
  --> $DIR/suggest-let-for-assignment.rs:10:5
   |
LL |     let_some_variable = 6;
   |     ^^^^^^^^^^^^^^^^^
   |
help: you might have meant to introduce a new binding
   |
LL -     let_some_variable = 6;
LL +     let some_variable = 6;
   |

error[E0425]: cannot find value `some_variable` in this scope
  --> $DIR/suggest-let-for-assignment.rs:11:35
   |
LL |     println!("some_variable: {}", some_variable);
   |                                   ^^^^^^^^^^^^^ not found in this scope

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

error[E0425]: cannot find value `other_variable` in this scope
  --> $DIR/suggest-let-for-assignment.rs:14:36
   |
LL |     println!("other_variable: {}", other_variable);
   |                                    ^^^^^^^^^^^^^^ not found in this scope

error[E0425]: cannot find value `x` in this scope
  --> $DIR/suggest-let-for-assignment.rs:16:8
   |
LL |     if x == "x" {
   |        ^ not found in this scope

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

error[E0425]: cannot find value `y` in this scope
  --> $DIR/suggest-let-for-assignment.rs:22:23
   |
LL |     println!("y: {}", y);
   |                       ^ not found in this scope

error: aborting due to 11 previous errors

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