Files
rust/library/std/src
Esteban Küber e5b3c7ef14 Add rustc_confusables annotations to some stdlib APIs
Help with common API confusion, like asking for `push` when the data structure really has `append`.

```
error[E0599]: no method named `size` found for struct `Vec<{integer}>` in the current scope
  --> $DIR/rustc_confusables_std_cases.rs:17:7
   |
LL |     x.size();
   |       ^^^^
   |
help: you might have meant to use `len`
   |
LL |     x.len();
   |       ~~~
help: there is a method with a similar name
   |
LL |     x.resize();
   |       ~~~~~~
```

#59450
2024-02-22 18:04:55 +00:00
..
2023-12-10 10:56:22 +08:00
2023-12-10 10:56:22 +08:00
2023-08-13 13:07:53 -06:00
2023-12-22 11:01:42 +01:00
2023-12-10 10:56:22 +08:00
2024-01-11 11:30:12 -05:00
2023-12-10 10:56:22 +08:00
2023-05-03 22:09:33 -07:00
2023-11-26 09:25:07 +08:00
2024-02-08 07:43:38 -05:00
2024-02-08 07:43:38 -05:00
2023-12-12 18:12:23 +08:00
2024-01-27 16:38:57 +01:00
2024-01-31 13:58:52 +00:00
2024-02-18 06:01:40 +03:00
2024-02-13 14:03:59 -05:00
2023-12-15 16:17:28 +00:00