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