rust/tests/ui/xc-private-method.stderr

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

26 lines
1019 B
Plaintext
Raw Normal View History

2020-03-05 03:03:15 +00:00
error[E0624]: associated function `static_meth_struct` is private
--> $DIR/xc-private-method.rs:6:44
2018-08-08 12:28:26 +00:00
|
LL | let _ = xc_private_method_lib::Struct::static_meth_struct();
| ^^^^^^^^^^^^^^^^^^ private associated function
|
::: $DIR/auxiliary/xc-private-method-lib.rs:8:5
|
LL | fn static_meth_struct() -> Struct {
| --------------------------------- private associated function defined here
2018-08-08 12:28:26 +00:00
2020-03-05 03:03:15 +00:00
error[E0624]: associated function `static_meth_enum` is private
--> $DIR/xc-private-method.rs:9:42
2018-08-08 12:28:26 +00:00
|
LL | let _ = xc_private_method_lib::Enum::static_meth_enum();
| ^^^^^^^^^^^^^^^^ private associated function
|
::: $DIR/auxiliary/xc-private-method-lib.rs:23:5
|
LL | fn static_meth_enum() -> Enum {
| ----------------------------- private associated function defined here
2018-08-08 12:28:26 +00:00
error: aborting due to 2 previous errors
For more information about this error, try `rustc --explain E0624`.