rust/tests/ui/static/static-priv-by-default2.stderr

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

28 lines
838 B
Plaintext
Raw Normal View History

2018-08-08 12:28:26 +00:00
error[E0603]: static `private` is private
2018-12-25 15:56:47 +00:00
--> $DIR/static-priv-by-default2.rs:15:30
2018-08-08 12:28:26 +00:00
|
LL | use child::childs_child::private;
| ^^^^^^^ private static
|
note: the static `private` is defined here
--> $DIR/static-priv-by-default2.rs:7:9
|
LL | static private: isize = 0;
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error[E0603]: static `private` is private
2018-12-25 15:56:47 +00:00
--> $DIR/static-priv-by-default2.rs:23:33
2018-08-08 12:28:26 +00:00
|
LL | use static_priv_by_default::private;
| ^^^^^^^ private static
|
note: the static `private` is defined here
--> $DIR/auxiliary/static_priv_by_default.rs:3:1
|
LL | static private: isize = 0;
2022-02-13 15:27:59 +00:00
| ^^^^^^^^^^^^^^^^^^^^^
2018-08-08 12:28:26 +00:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.