]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui-toml/vec_box_sized/test.stderr
Rollup merge of #82554 - SkiFire13:fix-string-retain-unsoundness, r=m-ou-se
[rust.git] / src / tools / clippy / tests / ui-toml / vec_box_sized / test.stderr
index 3bdeca0bc8774a77fdd77f42f0ccdfd23fc03bc5..cf194de3c55375f2aba1422fcf45527846678180 100644 (file)
@@ -1,4 +1,4 @@
-error: `Vec<T>` is already on the heap, the boxing is unnecessary.
+error: `Vec<T>` is already on the heap, the boxing is unnecessary
   --> $DIR/test.rs:9:12
    |
 LL | struct Foo(Vec<Box<u8>>);
@@ -6,13 +6,13 @@ LL | struct Foo(Vec<Box<u8>>);
    |
    = note: `-D clippy::vec-box` implied by `-D warnings`
 
-error: `Vec<T>` is already on the heap, the boxing is unnecessary.
+error: `Vec<T>` is already on the heap, the boxing is unnecessary
   --> $DIR/test.rs:10:12
    |
 LL | struct Bar(Vec<Box<u32>>);
    |            ^^^^^^^^^^^^^ help: try: `Vec<u32>`
 
-error: `Vec<T>` is already on the heap, the boxing is unnecessary.
+error: `Vec<T>` is already on the heap, the boxing is unnecessary
   --> $DIR/test.rs:13:18
    |
 LL | struct FooBarBaz(Vec<Box<C>>);