]> git.lizzy.rs Git - rust.git/blob - tests/ui/privacy/private-inferred-type-2.stderr
Move /src/test to /tests
[rust.git] / tests / ui / privacy / private-inferred-type-2.stderr
1 error: type `Priv` is private
2   --> $DIR/private-inferred-type-2.rs:16:5
3    |
4 LL |     m::Pub::get_priv;
5    |     ^^^^^^^^^^^^^^^^ private type
6
7 error: type `Priv` is private
8   --> $DIR/private-inferred-type-2.rs:17:5
9    |
10 LL |     m::Pub::static_method;
11    |     ^^^^^^^^^^^^^^^^^^^^^ private type
12
13 error: type `ext::Priv` is private
14   --> $DIR/private-inferred-type-2.rs:18:5
15    |
16 LL |     ext::Pub::static_method;
17    |     ^^^^^^^^^^^^^^^^^^^^^^^ private type
18
19 error: aborting due to 3 previous errors
20