rust/tests
Matthias Krüger ea2347843c
Rollup merge of #115363 - kpreid:suggest-private, r=compiler-errors
Don't suggest adding parentheses to call an inaccessible method.

Previously, code of this form would emit E0615 (attempt to use a method as a field), thus emphasizing the existence of private methods that the programmer probably does not care about. Now it ignores their existence instead, producing error E0609 (no field). The motivating example is:

```rust
let x = std::rc::Rc::new(());
x.inner;
```

which would previously mention the private method `Rc::inner()`, even though `Rc<T>` intentionally has no public methods so that it can be a transparent smart pointer for any `T`.

```rust
error[E0615]: attempted to take value of method `inner` on type `Rc<()>`
 --> src/main.rs:3:3
  |
3 | x.inner;
  |   ^^^^^ method, not a field
  |
help: use parentheses to call the method
  |
3 | x.inner();
  |        ++
  ```

  With this change, it emits E0609 and no suggestion.
2023-08-30 07:18:13 +02:00
..
assembly
auxiliary
codegen Auto merge of #115260 - scottmcm:not-quite-so-cold, r=WaffleLapkin 2023-08-29 02:23:43 +00:00
codegen-units
debuginfo
incremental
mir-opt Auto merge of #115231 - saethlin:dont-ignore-wasm, r=Mark-Simulacrum 2023-08-27 17:51:50 +00:00
pretty
run-coverage
run-coverage-rustdoc
run-make
run-make-fulldeps
run-pass-valgrind
rustdoc
rustdoc-gui Remove unneeded "background_color" parameter 2023-08-26 11:25:04 +02:00
rustdoc-js
rustdoc-js-std
rustdoc-json
rustdoc-ui
ui Rollup merge of #115363 - kpreid:suggest-private, r=compiler-errors 2023-08-30 07:18:13 +02:00
ui-fulldeps Create StableMir replacer for SMirCalls 2023-08-29 16:30:50 +03:00
COMPILER_TESTS.md