about summary refs log tree commit diff
path: root/tests/codegen/src-hash-algorithm
diff options
context:
space:
mode:
authorEsteban Küber <esteban@kuber.com.ar>2024-02-07 02:35:49 +0000
committerEsteban Küber <esteban@kuber.com.ar>2024-02-22 18:04:55 +0000
commite5b3c7ef1439fa946b3ba49a3bbbadc34d801a84 (patch)
tree2b675ebf917a7c6175bb27774c9d84bfb5ed43dd /tests/codegen/src-hash-algorithm
parent933a05bd0ba91caf219222e5f61d1c92d141ff61 (diff)
downloadrust-e5b3c7ef1439fa946b3ba49a3bbbadc34d801a84.tar.gz
rust-e5b3c7ef1439fa946b3ba49a3bbbadc34d801a84.zip
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
Diffstat (limited to 'tests/codegen/src-hash-algorithm')
0 files changed, 0 insertions, 0 deletions