Trevor Gross 00308920ae
Rollup merge of - estebank:unsized-args, r=cjgillot
Detect `*` operator on `!Sized` expression

The suggestion is new:

```
error[E0277]: the size for values of type `str` cannot be known at compilation time
  --> $DIR/unsized-str-in-return-expr-arg-and-local.rs:15:9
   |
LL |     let x = *"";
   |         ^ doesn't have a size known at compile-time
   |
   = help: the trait `Sized` is not implemented for `str`
   = note: all local variables must have a statically known size
   = help: unsized locals are gated as an unstable feature
help: references to `!Sized` types like `&str` are `Sized`; consider not dereferencing the expression
   |
LL -     let x = *"";
LL +     let x = "";
   |
```

Fix .
2024-08-24 21:03:30 -05:00
..
2024-08-17 12:43:25 -04:00
2024-06-30 07:12:26 -04:00
2024-06-21 19:00:18 -04:00
2024-05-25 09:37:08 +02:00
2024-05-25 09:37:08 +02:00
2024-03-13 23:05:17 +00:00