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

191 lines
4.3 KiB
Plaintext
Raw Normal View History

2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:132:18
2018-08-08 07:28:26 -05:00
|
LL | use bar::baz::{foo, bar};
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2020-01-08 11:02:10 -06:00
--> $DIR/privacy1.rs:132:18
|
LL | use bar::baz::{foo, bar};
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2020-01-08 11:02:10 -06:00
error[E0603]: module `baz` is private
--> $DIR/privacy1.rs:141:18
2018-08-08 07:28:26 -05:00
|
LL | use bar::baz;
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `i` is private
2020-01-08 11:02:10 -06:00
--> $DIR/privacy1.rs:165:20
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | use self::foo::i::A;
| ^ this module is private
|
note: the module `i` is defined here
--> $DIR/privacy1.rs:170:9
|
LL | mod i {
| ^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:104:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A::foo();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:105:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A::bar();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:107:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A.foo2();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:108:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A.bar2();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: trait `B` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:112:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::B::foo();
| ^ this trait is private
|
note: the trait `B` is defined here
--> $DIR/privacy1.rs:40:5
|
LL | trait B {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: function `epriv` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:118:20
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::epriv();
| ^^^^^ this function is private
|
note: the function `epriv` is defined here
--> $DIR/privacy1.rs:65:9
|
LL | fn epriv();
| ^^^^^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:127:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::foo();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: module `baz` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:128:16
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::bar();
| ^^^ this module is private
|
note: the module `baz` is defined here
--> $DIR/privacy1.rs:50:5
|
LL | mod baz {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
error[E0603]: trait `B` is private
2020-01-08 11:02:10 -06:00
--> $DIR/privacy1.rs:157:17
2018-08-08 07:28:26 -05:00
|
LL | impl ::bar::B for f32 { fn foo() -> f32 { 1.0 } }
| ^ this trait is private
|
note: the trait `B` is defined here
--> $DIR/privacy1.rs:40:5
|
LL | trait B {
| ^^^^^^^
2018-08-08 07:28:26 -05:00
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `bar` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:77:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | self::baz::A::bar();
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `bar` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:95:5
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | bar::A::bar();
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `bar` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:102:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::A::bar();
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `bar` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:105:9
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A::bar();
2018-08-08 07:28:26 -05:00
| ^^^^^^^^^^^^^^^^^^
2020-03-04 21:03:15 -06:00
error[E0624]: associated function `bar2` is private
2018-12-25 09:56:47 -06:00
--> $DIR/privacy1.rs:108:23
2018-08-08 07:28:26 -05:00
|
2019-03-09 06:03:44 -06:00
LL | ::bar::baz::A.bar2();
2018-08-08 07:28:26 -05:00
| ^^^^
2020-01-08 11:02:10 -06:00
error: aborting due to 18 previous errors
2018-08-08 07:28:26 -05:00
Some errors have detailed explanations: E0603, E0624.
2018-08-08 07:28:26 -05:00
For more information about an error, try `rustc --explain E0603`.