]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/method-private.stderr
:arrow_up: rust-analyzer
[rust.git] / src / test / ui / traits / method-private.stderr
1 error[E0624]: associated function `method` is private
2   --> $DIR/method-private.rs:19:9
3    |
4 LL |         fn method(&self) {}
5    |         ---------------- private associated function defined here
6 ...
7 LL |     foo.method();
8    |         ^^^^^^ private associated function
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`.