rust/src/test/ui/privacy/restricted/test.stderr

83 lines
1.9 KiB
Plaintext
Raw Normal View History

error[E0433]: failed to resolve: maybe a missing `extern crate bad;`?
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:50:12
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub(in bad::path) mod m1 {}
| ^^^ maybe a missing `extern crate bad;`?
2018-08-08 07:28:26 -05:00
error: visibilities can only be restricted to ancestor modules
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:51:12
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub(in foo) mod m2 {}
2018-08-08 07:28:26 -05:00
| ^^^
error[E0364]: `f` is private, and cannot be re-exported
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:21:24
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub(super) use foo::bar::f as g;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^
|
note: consider marking `f` as `pub` in the imported module
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:21:24
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | pub(super) use foo::bar::f as g;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^
error[E0603]: struct `Crate` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:38:25
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use pub_restricted::Crate;
| ^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: function `f` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:30:19
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use foo::bar::f;
| ^
2018-08-08 07:28:26 -05:00
error[E0616]: field `x` of struct `foo::bar::S` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:31:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | S::default().x;
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^
error[E0624]: method `f` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:32:18
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | S::default().f();
2018-08-08 07:28:26 -05:00
| ^
error[E0624]: method `g` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:33:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | S::g();
2018-08-08 07:28:26 -05:00
| ^^^^
error[E0616]: field `y` of struct `pub_restricted::Universe` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:42:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = u.y;
2018-08-08 07:28:26 -05:00
| ^^^
error[E0616]: field `z` of struct `pub_restricted::Universe` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:43:13
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | let _ = u.z;
2018-08-08 07:28:26 -05:00
| ^^^
error[E0624]: method `g` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:45:7
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | u.g();
2018-08-08 07:28:26 -05:00
| ^
error[E0624]: method `h` is private
2018-12-25 09:56:47 -06:00
--> $DIR/test.rs:46:7
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | u.h();
2018-08-08 07:28:26 -05:00
| ^
error: aborting due to 12 previous errors
Some errors have detailed explanations: E0364, E0433, E0603, E0616, E0624.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0364`.