rust/tests/ui/sized
Esteban Küber f6767f7a68 Detect `*` operator on `!Sized` expression
```
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 are always `Sized`, even if they point to unsized data; consider not dereferencing the expression
   |
LL -     let x = *"";
LL +     let x = "";
   |
```
2024-08-08 17:35:40 +00:00
..
coinductive-1-gat.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
coinductive-1.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
coinductive-2.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
coinductive-2.stderr Update tests 2024-02-07 10:42:01 +08:00
ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs Only check locally for reported errors 2024-06-18 15:43:27 +00:00
ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.stderr Only check locally for reported errors 2024-06-18 15:43:27 +00:00
expr-type-error-plus-sized-obligation.rs Silence unecessary `!Sized` binding error 2024-03-19 21:26:11 +00:00
expr-type-error-plus-sized-obligation.stderr Silence unecessary `!Sized` binding error 2024-03-19 21:26:11 +00:00
recursive-type-binding.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
recursive-type-binding.stderr rename tests 2023-12-26 17:50:30 +01:00
recursive-type-coercion-from-never.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
recursive-type-coercion-from-never.stderr add test for coercing never to infinite type 2023-12-26 17:57:33 +01:00
recursive-type-pass.rs [AUTO-GENERATED] Migrate ui tests from `//` to `//@` directives 2024-02-16 20:02:50 +00:00
stack-overflow-trait-infer-98842.32bit.stderr remove unnecessary ignore-endian-big from stack-overflow-trait-infer test 2024-07-02 16:31:40 +02:00
stack-overflow-trait-infer-98842.64bit.stderr remove unnecessary ignore-endian-big from stack-overflow-trait-infer test 2024-07-02 16:31:40 +02:00
stack-overflow-trait-infer-98842.rs remove unnecessary ignore-endian-big from stack-overflow-trait-infer test 2024-07-02 16:31:40 +02:00
unsized-binding.rs Only emit one error per unsized binding, instead of one per usage 2023-10-09 23:00:15 +00:00
unsized-binding.stderr Detect `*` operator on `!Sized` expression 2024-08-08 17:35:40 +00:00
unsized-str-in-return-expr-arg-and-local.rs Detect `*` operator on `!Sized` expression 2024-08-08 17:35:40 +00:00
unsized-str-in-return-expr-arg-and-local.stderr Detect `*` operator on `!Sized` expression 2024-08-08 17:35:40 +00:00