rust/tests/ui/sized
Esteban Küber 7f5548fa8b On function and method calls in patterns, link to the book
```
error: expected a pattern, found an expression
 --> f889.rs:3:13
  |
3 |     let (x, y.drop()) = (1, 2); //~ ERROR
  |             ^^^^^^^^ not a pattern
  |
  = note: arbitrary expressions are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html>

error[E0532]: expected a pattern, found a function call
 --> f889.rs:2:13
  |
2 |     let (x, drop(y)) = (1, 2); //~ ERROR
  |             ^^^^ not a tuple struct or tuple variant
  |
  = note: function calls are not allowed in patterns: <https://doc.rust-lang.org/book/ch18-00-patterns.html>
```

Fix #97200.
2024-10-06 01:44:59 +00:00
..
coinductive-1-gat.rs
coinductive-1.rs
coinductive-2.rs
coinductive-2.stderr
ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.rs
ensure-overriding-bindings-in-pattern-with-ty-err-doesnt-ice.stderr On function and method calls in patterns, link to the book 2024-10-06 01:44:59 +00:00
expr-type-error-plus-sized-obligation.rs
expr-type-error-plus-sized-obligation.stderr
recursive-type-binding.rs
recursive-type-binding.stderr
recursive-type-coercion-from-never.rs
recursive-type-coercion-from-never.stderr
recursive-type-pass.rs
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
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