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 07:28:26 -05:00
error[E0603]: static `private` is private
2018-12-25 09:56:47 -06:00
--> $DIR/static-priv-by-default2.rs:15:30
2018-08-08 07:28:26 -05: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 07:28:26 -05:00
error[E0603]: static `private` is private
2018-12-25 09:56:47 -06:00
--> $DIR/static-priv-by-default2.rs:23:33
2018-08-08 07:28:26 -05: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 09:27:59 -06:00
| ^^^^^^^^^^^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0603`.