Files
rust/tests/ui/typeck
Matthias Krüger 0174900c5d Rollup merge of #147398 - Jamesbarford:fix/method-call-type-inference-error, r=chenyukang
Fix; correct placement of type inference error for method calls

Addresses a FIXME for displaying errors on method calls;

Before;
```
error[E0282]: type annotations needed
  --> /<location>/src/main.rs:48:15
   |
## |             e.is_conversion_error();
   |               ^^^^^^^^^^^^^^^^^^^ cannot infer type
```

After;

```
error[E0282]: type annotations needed
  --> /<location>/src/main.rs:48:15
   |
## |             e.is_conversion_error();
   |             ^ cannot infer type
```
2025-10-07 19:39:08 +02:00
..
2025-07-31 21:25:49 +05:00
2025-07-31 21:25:49 +05:00
2025-07-31 21:25:49 +05:00
2025-02-03 10:39:32 -05:00
2025-04-21 16:16:38 +09:00
2025-08-05 19:34:46 +05:00
2025-08-05 19:34:46 +05:00
2025-07-31 21:25:49 +05:00
2025-07-31 21:25:49 +05:00
2025-07-31 21:25:49 +05:00