]> git.lizzy.rs Git - rust.git/blob - src/test/ui/privacy/privacy2.stderr
update ui tests
[rust.git] / src / test / ui / privacy / privacy2.stderr
1 error[E0432]: unresolved import `bar::foo`
2   --> $DIR/privacy2.rs:17:9
3    |
4 LL |     use bar::foo;
5    |         ^^^^^^^^ no `foo` in `bar`
6
7 error[E0603]: function `foo` is private
8   --> $DIR/privacy2.rs:23:20
9    |
10 LL |     use bar::glob::foo;
11    |                    ^^^
12
13 error: requires `sized` lang_item
14
15 error: aborting due to 3 previous errors
16
17 Some errors have detailed explanations: E0432, E0603.
18 For more information about an error, try `rustc --explain E0432`.