2020-03-05 03:03:15 +00:00
|
|
|
error[E0624]: associated function `static_meth_struct` is private
|
2020-03-22 23:09:42 +00:00
|
|
|
--> $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();
|
2020-03-22 23:09:42 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^^^ private associated function
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2021-07-17 18:13:50 +00:00
|
|
|
::: $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
|
2020-03-22 23:09:42 +00:00
|
|
|
--> $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();
|
2020-03-22 23:09:42 +00:00
|
|
|
| ^^^^^^^^^^^^^^^^ private associated function
|
2021-06-10 11:52:00 +00:00
|
|
|
|
|
2021-07-17 18:13:50 +00:00
|
|
|
::: $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`.
|