]> git.proxmox.com Git - rustc.git/blob - tests/ui/traits/method-private.stderr
Merge 1.70 into proxmox/bookworm
[rustc.git] / tests / ui / traits / method-private.stderr
1 error[E0624]: method `method` is private
2 --> $DIR/method-private.rs:19:9
3 |
4 LL | fn method(&self) {}
5 | ---------------- private method defined here
6 ...
7 LL | foo.method();
8 | ^^^^^^ private method
9 |
10 = help: items from traits can only be used if the trait is in scope
11 help: the following trait is implemented but not in scope; perhaps add a `use` for it:
12 |
13 LL + use inner::Bar;
14 |
15
16 error: aborting due to previous error
17
18 For more information about this error, try `rustc --explain E0624`.