summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui/single_range_in_vec_init.stderr
blob: e83e49af676cc746f288f9d455ac3cd5b93d8a8b (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
136
137
138
139
140
141
142
143
144
145
146
error: an array of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:26:5
   |
LL |     [0..200];
   |     ^^^^^^^^
   |
   = note: `-D clippy::single-range-in-vec-init` implied by `-D warnings`
   = help: to override `-D warnings` add `#[allow(clippy::single_range_in_vec_init)]`
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200).collect::<std::vec::Vec<i32>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted an array of len 200, try
   |
LL |     [0; 200];
   |      ~~~~~~

error: a `Vec` of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:27:5
   |
LL |     vec![0..200];
   |     ^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200).collect::<std::vec::Vec<i32>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted a `Vec` of len 200, try
   |
LL |     vec![0; 200];
   |          ~~~~~~

error: an array of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:28:5
   |
LL |     [0u8..200];
   |     ^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0u8..200).collect::<std::vec::Vec<u8>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted an array of len 200, try
   |
LL |     [0u8; 200];
   |      ~~~~~~~~

error: an array of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:29:5
   |
LL |     [0usize..200];
   |     ^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0usize..200).collect::<std::vec::Vec<usize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted an array of len 200, try
   |
LL |     [0usize; 200];
   |      ~~~~~~~~~~~

error: an array of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:30:5
   |
LL |     [0..200usize];
   |     ^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200usize).collect::<std::vec::Vec<usize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted an array of len 200usize, try
   |
LL |     [0; 200usize];
   |      ~~~~~~~~~~~

error: a `Vec` of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:31:5
   |
LL |     vec![0u8..200];
   |     ^^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0u8..200).collect::<std::vec::Vec<u8>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted a `Vec` of len 200, try
   |
LL |     vec![0u8; 200];
   |          ~~~~~~~~

error: a `Vec` of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:32:5
   |
LL |     vec![0usize..200];
   |     ^^^^^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0usize..200).collect::<std::vec::Vec<usize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted a `Vec` of len 200, try
   |
LL |     vec![0usize; 200];
   |          ~~~~~~~~~~~

error: a `Vec` of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:33:5
   |
LL |     vec![0..200usize];
   |     ^^^^^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200usize).collect::<std::vec::Vec<usize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
help: if you wanted a `Vec` of len 200usize, try
   |
LL |     vec![0; 200usize];
   |          ~~~~~~~~~~~

error: an array of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:35:5
   |
LL |     [0..200isize];
   |     ^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200isize).collect::<std::vec::Vec<isize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: a `Vec` of `Range` that is only one element
  --> $DIR/single_range_in_vec_init.rs:36:5
   |
LL |     vec![0..200isize];
   |     ^^^^^^^^^^^^^^^^^
   |
help: if you wanted a `Vec` that contains the entire range, try
   |
LL |     (0..200isize).collect::<std::vec::Vec<isize>>();
   |     ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

error: aborting due to 10 previous errors