rust/tests/ui/cross-crate/private-by-default.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

134 lines
3.7 KiB
Plaintext
Raw Normal View History

2018-08-08 20:28:26 +08:00
error[E0603]: static `j` is private
--> $DIR/private-by-default.rs:23:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::j;
| ^ private static
|
note: the static `j` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:47:1
|
LL | static j: isize = 0;
2022-02-13 23:27:59 +08:00
| ^^^^^^^^^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: function `k` is private
--> $DIR/private-by-default.rs:25:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::k;
| ^ private function
|
note: the function `k` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:48:1
|
LL | fn k() {}
| ^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: unit struct `l` is private
--> $DIR/private-by-default.rs:27:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::l;
| ^ private unit struct
|
note: the unit struct `l` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:49:1
|
LL | struct l;
2022-02-13 23:27:59 +08:00
| ^^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: enum `m` is private
--> $DIR/private-by-default.rs:29:35
2018-08-08 20:28:26 +08:00
|
LL | foo::<static_priv_by_default::m>();
| ^ private enum
|
note: the enum `m` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:50:1
|
LL | enum m {}
| ^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: type alias `n` is private
--> $DIR/private-by-default.rs:31:35
2018-08-08 20:28:26 +08:00
|
LL | foo::<static_priv_by_default::n>();
| ^ private type alias
|
note: the type alias `n` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:51:1
|
LL | type n = isize;
2022-02-13 23:27:59 +08:00
| ^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: module `foo` is private
--> $DIR/private-by-default.rs:35:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::foo::a;
| ^^^ - static `a` is not publicly re-exported
| |
| private module
|
note: the module `foo` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:12:1
|
LL | mod foo {
| ^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: module `foo` is private
--> $DIR/private-by-default.rs:37:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::foo::b;
| ^^^ - function `b` is not publicly re-exported
| |
| private module
|
note: the module `foo` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:12:1
|
LL | mod foo {
| ^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: module `foo` is private
--> $DIR/private-by-default.rs:39:29
2018-08-08 20:28:26 +08:00
|
LL | static_priv_by_default::foo::c;
| ^^^ - unit struct `c` is not publicly re-exported
| |
| private module
|
note: the module `foo` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:12:1
|
LL | mod foo {
| ^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: module `foo` is private
--> $DIR/private-by-default.rs:41:35
2018-08-08 20:28:26 +08:00
|
LL | foo::<static_priv_by_default::foo::d>();
| ^^^ - enum `d` is not publicly re-exported
| |
| private module
|
note: the module `foo` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:12:1
|
LL | mod foo {
| ^^^^^^^
2018-08-08 20:28:26 +08:00
error[E0603]: module `foo` is private
--> $DIR/private-by-default.rs:43:35
2018-08-08 20:28:26 +08:00
|
LL | foo::<static_priv_by_default::foo::e>();
| ^^^ - type alias `e` is not publicly re-exported
| |
| private module
|
note: the module `foo` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:12:1
|
LL | mod foo {
| ^^^^^^^
2018-08-08 20:28:26 +08:00
error: aborting due to 10 previous errors
For more information about this error, try `rustc --explain E0603`.