summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/tests/ui-toml/vec_box_sized/test.stderr
blob: 55de68f8ecf47b21cc90489ea7f8c4ec06b21db8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
error: `Vec<T>` is already on the heap, the boxing is unnecessary
  --> $DIR/test.rs:9:12
   |
LL | struct Foo(Vec<Box<u8>>);
   |            ^^^^^^^^^^^^ help: try: `Vec<u8>`
   |
   = note: `-D clippy::vec-box` implied by `-D warnings`

error: `Vec<T>` is already on the heap, the boxing is unnecessary
  --> $DIR/test.rs:10:12
   |
LL | struct Bar(Vec<Box<u16>>);
   |            ^^^^^^^^^^^^^ help: try: `Vec<u16>`

error: `Vec<T>` is already on the heap, the boxing is unnecessary
  --> $DIR/test.rs:14:18
   |
LL | struct FooBarBaz(Vec<Box<C>>);
   |                  ^^^^^^^^^^^ help: try: `Vec<C>`

error: aborting due to 3 previous errors