]> git.lizzy.rs Git - rust.git/blob - src/test/ui/traits/method-private.stderr
Add 'src/tools/rustfmt/' from commit '7872306edf2e11a69aaffb9434088fd66b46a863'
[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 |     foo.method();
5    |         ^^^^^^ private associated function
6    |
7    = help: items from traits can only be used if the trait is in scope
8 help: the following trait is implemented but not in scope; perhaps add a `use` for it:
9    |
10 LL | use inner::Bar;
11    |
12
13 error: aborting due to previous error
14
15 For more information about this error, try `rustc --explain E0624`.