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
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
stack-overflow-trait-infer-98842.64bit.stderr
stack-overflow-trait-infer-98842.rs
unsized-binding.rs
unsized-binding.stderr
unsized-str-in-return-expr-arg-and-local.rs
unsized-str-in-return-expr-arg-and-local.stderr