rust/tests/ui/privacy/privacy1.stderr

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

206 lines
4.8 KiB
Plaintext
Raw Normal View History

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